The Header and Footer dialog box has which of the following tabs?
A. Notes and Handouts
B. Reading
C. Outline
D. Options
Answer: A
You might also like to view...
Consider the following two Java code segments:
Segment 1 Segment 2 int i = 0; for (int i = 0; i <= 20; i++) while (i < 20) { { System.out.println(i); i++; } System.out.println(i); } Which of the following statements are true? a. The output from these segments is not the same. b. The scope of the control variable i is different for the two segments. c. Both (a) and (b) are true. d. Neither (a) nor (b) is true.
Given the following code snippet, what will be displayed on the web page if the user enters 5Guys! at the prompt?
``` var result = " "; var guys = prompt("How many guys are there?"); result = (parseInt(guys); document.write(result); ``` a. 5Guys! b. 5.0 c. NaN d. 5
When visitors fill out a form, they can use the ____ key on the keyboard rather than a mouse to move from field to field.
A. [Ctrl] B. [Alt] C. [Tab] D. [Enter]
Which of the following will take output from a command and append it to the end of a file?
A. < B. << C. > D. >>