Answer:
B.
Explanation:
Metadata is a type of data that dispense details of other data. In simple terms, metadata can be defined as information of a file such as file name, attributes, etc.
<u>In excel sheet, metadata works the same and helps to provide information about </u><u>file name, author name, file size, attributes such as read-only, archieve, hidden, system, location of the file, date and time of creation, modification, or accessed, type of file, etc</u><u>.</u>
From the given options, the information that is not considered or included in metadata is calculation inside the file. Metadata in excel sheet does not include calculations inside the file. Thus option B is the correct answer
For the answer to the question above asking, what h<span>ybrid processors that can process 32 bits or 64 bits are known by what term?
I think you are referring to the Chipset. and they are Manufactured by Intel and Advance Micro Devices (AMD). Intel's Pentium is the first one to have 32 bits and 64 bits of processors.</span>
Answer:
The program to this question as follows:
Program:
x=int(input('Input the first number: ')) #defining variable x and input value by user
y=int(input('Input the second number: ')) #defining variable y and input value by user
if x > y: #if block to check value x>y
max=x #define variable max that hold variable x value
print('max number is: ', x) #print value
else: #else block
max=y #define variable max that holds variable y value
print('max number is: ', y) #print value
Output:
Input the first number: 22
Input the second number: 33
max number is: 33
Explanation:
In the above code two-variable, "x and y" is defined, which holds a value, which is input by the variable. In the next step, the if block statement is used that can be described as follows:
- In the if block, it will check x is greater than y it will define a variable, that is "max", that holds variable x value and prints its value.
- In the else block, if the above condition is false it uses the max variable, that holds variable y value and prints its value.
Answer:
Following are the error in the given program are explain in the explanation part .
Explanation:
The main() function call the function getMileage() function after that the control moves to the getMileage() definition of function. In this firstly declared the "mileage" variable after that it taking the input and module is finished we see that the "mileage" variable is local variable i,e it is declared inside the " Module getMileage() " and we prints in the main module that are not possible to correct these we used two technique.
Technique 1: Declared the mileage variable as the global variable that is accessible anywhere in the program.
Technique 2: We print the value of "mileage" inside the Module getMileage() in the program .
Answer:
Algorithm:
1. Declare and initialize variable one_dog_year=7.
2.Ask user to give dog age.
2.1 Read the dog age and assign it to variable "dog_age".
3.Create a variable "human_age" to store the equivalent human age.
3.1 Calculate equivalent human age as "human_age=one_dog_year*dog_age".
4.Print the equivalent human age of dog age.
7. End the program.
// here is algorithm implemented in c++
#include <bits/stdc++.h>
using namespace std;
int main()
{
// initialize one dog year
int one_dog_year=7;
int dog_age;
int equi_h_age;
cout<<"Enter the dog age:";
// read the dog age
cin>>dog_age;
//calculate the equivalent human age
equi_h_age=dog_age*one_dog_year;
cout<<"equivalent human age is : "<<equi_h_age<<endl;
return 0;
}
Output:
Enter the dog age:2
equivalent human age is : 14