Answer: Metadata
Explanation: Metadata is a type of 'data' which summarizes or gives information about data. It is used for referencing data which can be very helpful while working with such data as it brings ease and provides understanding of the data. Metadata data harbors specific details about data files such as documents, web pages, videos, images, spreadsheets. It contains information such as author, date created, title or meaning of headers or shortened names, file size.
In the scenario above, author's name, subject and title created in the report properties are Metadata which contains basic information about her report.
Answer:
true
Explanation:
they really do
the memory saves
while the processor determine the speed of the computer .... The processor also determine the price is the pc as it is the brain of the computer
Answer:
B
Explanation:
Determining how the user could interact with the app varies person to person, the others are essential to creating apps though.
Display Properties is the screen that should be open
Answer: in C
#include <stdio.h>
int main(){
int num1, num2;
printf("Enter first number :: ");
scanf("%d", &num1);
printf("Enter second number :: ");
scanf("%d", &num2);
if(num1 > num2){
printf("%d is larger than %d\n", num1, num2);
} else if (num2 > num1) {
printf("%d is larger than %d\n", num2, num1);
} else{
printf("Both of them are equal\n");
}
return 0;
}