Which of the following characters surround a merge field in a main document?

A. (( ))
B. << >>
C. // \\
D. [[ ]]


Answer: B

Computer Science & Information Technology

You might also like to view...

Answer the following statements true (T) or false (F)

1. The break statement allows you to skip one iteration in a loop. 2. The continue statement is used to skip all or part of a loop iteration and then finishes the rest of the loop's iterations. 3. The following code will accurately find the average of four numbers entered by the user: ``` var sum = 0; for(var count = 0; count < 4; count++) sum = sum + parseFloat(prompt("Enter a number:"); var average = sum/count; ``` 4. Desk checking is only used to check the results of summing or averaging values. 5. The accumulator is the variable that holds the total of a sum of values in a loop.

Computer Science & Information Technology

As shown in the accompanying figure, the ____ value for the box-shadow property specifies the additional width of the shadow.

A. offset B. shadow-width C. spread D. v-shadow

Computer Science & Information Technology

Windows 8 uses a technology called ________ boot for faster computer startup and shut down times

Fill in the blank(s) with correct word

Computer Science & Information Technology

Brightness of a picture can be adjusted from the ________ group

A) Adjust B) Arrange C) Styles D) Corrections

Computer Science & Information Technology