The ____ rule defines the size of the print area and margins for printing.

A. @print
B. @page
C. @output
D. @window

Answer: B

Computer Science & Information Technology

You might also like to view...

The Windows 8.1 file scesetup.log ___________

a. Records information about the user directory structure, including security identifiers (SIDs) b. Records modifications performed on the system during Setup c. Records data about Plug and Play devices and drivers. Check this file for device driver installation information d. Logs the security settings for the computer

Computer Science & Information Technology

How many times does each of the following loops execute? Assume that i is not changed in the loop body.

i. for (i = -10; i <= 10; i++) ii. for (i = 10; i >= 0; i++) iii. for (i = -10; i <= 10; i = i + 3) iv. for (i = -10; i <= 10; i = i + 2)

Computer Science & Information Technology