<span>Before GUIs became popular, the command line interface (CLI) was the most commonly used.
</span>GUI stands for Graphical User Interface . Like its name says it is a graphical interface <span>that allows interaction with users through graphical icons and visual indicators , rather than through text-based interface.</span><span>
Command line interace (CLI) is text-based interface in which </span>the user <span>issues commands to the program in the form of successive lines of text.</span>
Answer:
Step 1 - Open the View tab.
Step 2 - Open the Page Setup dialog box
Step 3 - Open the header and footer tool.
Step 4 - Click OK.
Explanation:
In order to access to the header and footer tools
Step 1 - Open the View tab.
Step 2 - Open the Page Setup dialog box
Step 3 - Open the header and footer tool.
Step 4 - Click OK.
Select the
comments feature.
We use comments in our documents to track issues for follow
up or make suggestions to other people. A comment is inserted inside a balloon or
a box that appears in the document's margins. Whatever the situation you may be in,
you can easily add comments in a word document.
Electricity is one of the most common causes of fire in homes and workplaces. Electrical accidents appear to be caused by a combination of two factors: 1. Unsafe equipment and/or installation; 2. Workplaces made unsafe by the environment
So the answer would be D)Faulty electricity
Answer:
a. (p*Main).age = 20;
Explanation:
Pointers use ->
where as normal variable use . to access its members
pMain is the pointer.
*pMain is the value inside pMain.
pMain->age = 20;
This statement equals to
(*pMain).age = 20;
Answer is option a.