Which of the following is NOT included as part of the status bar?

A) Total number of pages in the document
B) The total number of characters in the document
C) The page number where the insertion point is located
D) Total number of words in the document

B

Computer Science & Information Technology

You might also like to view...

Live Preview is not available for picture styles

Indicate whether the statement is true or false

Computer Science & Information Technology

What is the output of the following function call, given the function definition below?

cout << loopFunction (5, 3); // function call int loopFunction (int x, int y) // function definition { int local = x; for (int c = 0; c < y; c++) local += 2; return local; } a. 6 b. 7 c. 9 d. 11

Computer Science & Information Technology