Answer:
It is used to transfer data
Explanation:
An output used on a computer is used for transferring your data from your device to another by any user
Answer: responsive
Explanation:
its called mobile responsivness and most good websites have it
Answer:
The correct answer to the following question will be "Metadata".
Explanation:
Metadata is "information providing information on other data" This is "data about data", in other words.
There are many subareas of metadata, including:
- Structural metadata
- Iscriptive metadata
- Statistical metadata
- Reference metadata
- Administrative metadata
Metadata gives a summary of the features of the data and the collection of relationships that connect the data found in the database.
It defines other details, is a prefix in most uses of computing means "an underlying meaning or description. Very simple document metadata are, for example, creator, date generated and date changed and file size.
Therefore, Metadata is the right answer.
Answer:
1.
DIM myArray(10) as INTEGER
LET A = 0
FOR I = 1 TO 10 STEP 2
INPUT “INPUT NUMBER”; myArray(i)
LET A = A + myArray(i)
NEXT
PRINT A
END
2.
REM PROGRAM FOR CALCULATING THE SIMPLE INTEREST
CLS
INPUT “INPUT THE PRINCIPAL”; P
INPUT “INPUT THE TIME”; T
INPUT “INPUT THE RATE”;R
SI = P* T * R / 100
PRINT “SIMPLE INTEREST =”; SI
END
Explanation:
Please find the respective programs in the answer section.