A(n) ________ is the area of blank space that displays to the left, right, top, and bottom of a document

A) margin B) tab C) indent D) border


A

Computer Science & Information Technology

You might also like to view...

When using the logical operator “And”, what part of the expression must be true?

(A) only the left part (B) only the right par (C) both parts (D) either the left or right part, but not both

Computer Science & Information Technology

Which of the following statements generates a random number >= 2 and < 10.

A. Math.random() B. Math.random(2, 10) C. Math.random() * 10 + 2 D. Math.random() * 2 + 10 E. Math.random() * 8 + 2 F. Math.random() * 2 + 8

Computer Science & Information Technology

Which of the following statements are correct?

``` I: try (PrintWriter output = new PrintWriter("output.txt")) { output.println("Welcome to Java"); } II: try (PrintWriter output = new PrintWriter("output.txt");) { output.println("Welcome to Java"); } III: PrintWriter output; try (output = new PrintWriter("output.txt");) { output.println("Welcome to Java"); } IV: try (PrintWriter output = new PrintWriter("output.txt");) { output.println("Welcome to Java"); } finally { output.close(); } ``` a. I b. II c. III d. IV

Computer Science & Information Technology

In an 802.11b network, which channels are nonoverlapping?

A. 1, 5, 9 B. 1, 6, 11 C. 1, 7, 13 D. 1, 8, 15

Computer Science & Information Technology