To pause, restart, or cancel a print job, open the print ____________________, click the name of the print job, then choose the desired option from the Document menu.

Fill in the blank(s) with the appropriate word(s).


queue

Computer Science & Information Technology

You might also like to view...

Given the following code that uses recursion to find the factorial of a number, how many times will the else clause be executed if n = 5?

``` private static int factorial(int n) { if (n == 0) return 1; else return n * factorial(n - 1); } ``` a. 3 b. 4 c. 5 d. 6

Computer Science & Information Technology

Use _____ when parts of a document require different page-based format settings.

A. blocks B. sections C. paragraphs D. pages

Computer Science & Information Technology

What is the size in bits of an int?

a. 8 b. 16 c. 32 d. 64

Computer Science & Information Technology

Design units are used to specify the __________ of a Font.

a) Size b) Name c) FontFamily d) Style

Computer Science & Information Technology