Answer:
Option (2) is the correct answer of this question.
Explanation:
We will increase the left and right margins of the data on a worksheet that will consume a whole printed page and columns on second page then the data will print all in one page.
Following are the steps to print the Data all in on page:-
Step 1. Choose the Ribbon Page Design button
Step2. select 1 page in the Scale to Fit category, and in the Width box, we will automatic choose the height box.
Step 3 .Finally we will choose 1 page in the Height box to print your worksheet to a single page.
"Other options are incorrect because they are not related to the given question.i.e, to print the data in on page in the worksheet".
Hey my name is ..... and this do the thesis
Answer:
I am writing a C++ program. Let me know if you want the program in some other programming language. Here is the portion of the code:
if((userItem == GR_APPLES) || (userItem == GR_BANANAS)){
cout << "Fruit"; }
else if((userItem == GR_JUICE) || (userItem == GR_WATER)){
cout << "Drink"; }
else{
cout << "Unknown"; }
cout << endl;
Explanation:
The IF statement is used to check the defined options with the value in the userItem.
If the value of the userItem is GR_APPLES OR GR_BANANAS then Fruit is printed as the output. || represents a logical operator OR so this means that userItem can be either the GR_APPLES or GR_BANANAS for the If condition to evaluate to true.
If the above condition evaluates to false then the else-if part will be checked next. So the else if checks if the value in the userItem is GR_JUICE or GR_WATER. If userItem contains either of these two then Drink is displayed on the screen as output.
If the else-if statement also evaluates to false then the else part is executed which displays Unknown.
The cout<< endl; statement in the last is used to print the new line. For example if the output is Unknown then it is followed by a new line.
In the given program userItem is set to GR_APPLES
GroceryItem userItem = GR_APPLES
So the output of the whole program is Fruit followed by a new line.
The screenshot of the code along with the output is attached.
c i belive that is the right answer