_____ view allows you to create or modify a worksheet while viewing how it will look in printed format.
A. Normal
B. Page Layout
C. Page Break Preview
D. Full Screen
Answer: B
You might also like to view...
Answer the following statements true (T) or false (F)
1) Examples of human readable external I/O devices are printers, terminals, and keyboards. 2) The use to which a device is put does not have an influence on the software and polices in the operating system and supporting utilities. 3) Direct memory access is the dominant form of transfer that must be supported by the operating system. 4) The hierarchical philosophy is that the functions of the operating system should be separated according to their complexity, their characteristic time scale, and their level of abstraction. 5) The actual queuing and scheduling of I/O operations occurs at the logical I/O module.
Bitmap graphics are coded as a series of bits. Each bit represents the color of one ________.
Fill in the blank(s) with the appropriate word(s).
Which of the following programs do you use to create PDFs?
A. Adobe Acrobat B. Adobe Reader C. Microsoft Word D. Microsoft Publisher
What is the output of the following program?
``` count = 5; while (count > 0) { print(“Woot! ”); count -= 1; } ```