Answer:
i. View Tab
Explanation:
View tab is used to change the current view of the document. The view can be changed as, Grid view, outline view, draft view and web layout view. This can be used to check the document from different aspects.
ii. Busy
Explanation
Whenever some one is scheduling meeting, the users saw that, busy is written in different time slots of the calendar, whenever the person is busy.
iii. Attach Signature
Explanation
When some user want to send his information, such as name, designation, contact number etc. in email. He should add his signature in the document. The signature in the mail is the information, that sender want to sent to client.
iv. All Categories
Explanation
In outlook 2016, All categories option is used to change the category name by editing this information. There are different categories represented by different colors. To change the name of the category, Haratio just choose the option of All categories.
1. Data is easy to backup as all data is stored on the file server.
2.Network users can communicate by email and instant messenger.
Answer:
A technician is configuring a new SOHO multifunction wireless router at a customer's location to provide network access to several wireless ...
Explanation:
Answer:
for (int h = k; h >= 0; h--)
Explanation:
From the list of given options, option C answers the question.
In the outer loop
Initially, k = 0
In the inner loop,
h = k = 0
The value of h will be printed once because h>=0 means 0>=0 and this implies once
To the outer loop
k = 1
The inner loop will always assume value of k;
So,
h = 1
This will be printed twice because of the condition h>=0 means 1>=0.
Since 1 and 0 are >=0; 1 will be printed twice
To the outer loop
k = 2
The inner loop
h = 2
This will be printed thrice because of the condition h>=0 means 2>=0.
Since 2, 1 and 0 are >=0; 2 will be printed thrice
To the outer loop
k = 3
The inner loop
h = 3
This will be printed four times because of the condition h>=0 means 3>=0.
Since 3, 2, 1 and 0 are >=0; 3 will be printed four times