What type of margins are used in a document with facing pages, such as a magazine?

A. Gutter
B. Mirror
C. Default
D. Facing


Answer: B

Computer Science & Information Technology

You might also like to view...

Referring to the accompanying figure, how would you select the series of four contiguous files at the bottom of the list?

A. click the first file, hold down the Ctrl key, then click the last file B. click the first file, hold down the Shift key, then click each file C. click the first file, hold down the Shift key, then click the last file D. hold down the Ctrl key and click each file

Computer Science & Information Technology

Put the following list of strings in lexicographic order as if determined by the compareTo method of the String class. Consult the Unicode chart in Appendix C.

``` "fred" "Ethel" "?-?-?-?" "{([])}" "Lucy" "ricky" "book" "******" "12345" " " "HEPHALUMP" "bookkeeper" "6789" ";+

Computer Science & Information Technology

A(n) ____________________ variable can be any number, such as 12, 22.5, or -3.14159.

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

Computer Science & Information Technology

Suppose the input for number is 9 . What is the output from running the following program?

import java.util.Scanner; public class Test { public static void main(String[] args) { Scanner input = new Scanner(System.in); System.out.print("Enter an integer: "); int number = input.nextInt(); int i; boolean isPrime = true; for (i = 2; i < number && isPrime; i++) { if (number % i == 0) { isPrime = false; } } System.out.println("i is " + i); if (isPrime) System.out.println(number + " is prime"); else System.out.println(number + " is not prime"); } } a. i is 3 followed by 9 is prime b. i is 3 followed by 9 is not prime c. i is 4 followed by 9 is prime d. i is 4 followed by 9 is not prime

Computer Science & Information Technology