we will write year in column B and column c respectively
2017 and 2018
then we will add months of year from January to December in the cells range from A2 to A13
then we will choose cell g5 and will write the diffrence formula
g5=attendance of 2018 - attendance of 2017"
we put "=" sign to put an formula in excel
then finally we will use fill handle and drag it from g6 to g12
to copy the difference formula
look at attached file
Answer:
C
Explanation:
I believe that's the answer if it's not sorry
Answer:
Data type is an attribute of the data in the computer science. It basically guide the compiler and interpreter about the data utilization in the program. Data type basically define the operation, which can be done on given data.
There are different types of data types are as follow:
Integer data type: This type if data type basically represent the integer type of data value from largest to smallest order.
For example: int p = 10;
Real data type: This type of data type is used to represent the real type of number from largest to smallest range.
For example: float b = 17.6;
Answer:
A Program was written to carry out some set activities. below is the code program in C++ in the explanation section
Explanation:
Solution
CODE
#include <iostream>
using namespace std;
int main() {
string name; // variables
int number;
cin >> name >> number; // taking user input
while(number != 0)
{
// printing output
cout << "Eating " << number << " " << name << " a day keeps the doctor away." << endl;
// taking user input again
cin >> name >> number;
}
}
Note: Kindly find an attached copy of the compiled program output to this question.
Ayudar a las personas que los contratan