When viewing a Word document, the active page number and the number of pages in the document are displayed on the:

A) first line of the document. B) Ribbon.
C) status bar. D) taskbar.

C

Computer Science & Information Technology

You might also like to view...

A(n) ________ is a comparison between two things and can help people connect known concepts with unfamiliar concepts

a. Absolute b. Analogy c. Style sheet d. None of the above

Computer Science & Information Technology

What is the output of the following code?

``` double[] myList = {1, 5, 5, 5, 5, 1}; double max = myList[0]; int indexOfMax = 0; for (int i = 1; i < myList.length; i++) { if (myList[i] > max) { max = myList[i]; indexOfMax = i; } } System.out.println(indexOfMax); ``` a. 0 b. 1 c. 2 d. 3 e. 4

Computer Science & Information Technology