The enter key sends the cursor to the next line, or it executes a command or operation.
Answer:
no why do you ask.. . ...........
Answer:
C.the rectangular box where a column and row intersect
Explanation:
A cell is the intersection of a column and a row on a worksheet. You enter data into cells to create a worksheet.
Answer:
#include<iostream>
using namespace std;
int main()
{
int length = 16;
int width = 18;
int perimeter = (2*length) + (2 * width);
cout<<"The perimeter is: "<<perimeter<<endl;
}
Explanation:
First include the library iostream in the c++ program for input/output.
then, create the main function and define the variable with given values in the length and width.
After that calculate the perimeter by using the formula.
perimeter = 2*length + 2*width
and finally display the output on the screen by using the cout instruction.