Which command is used to resave frequently used text and then insert the saved text as needed in other documents?

A. Bookmark
B. Template
C. Text box
D. Quick Parts


Answer: D

Computer Science & Information Technology

You might also like to view...

Suppose you enter 34.3, the ENTER key, 57.8, the ENTER key, abc, the Enter key. Analyze the following code.

``` 1 Scanner input = new Scanner(System.in); 2 double v1 = input.nextDouble(); 3 double v2 = input.nextDouble(); 4 String line = input.nextLine(); ``` a. After line 2 is executed, v1 is 34.3. b. After line 3 is executed, v2 is 57.8. c. After line 4 is executed, line contains an empty string. d. After line 4 is executed, line is null. e. After line 4 is executed, line contains character "abc".

Computer Science & Information Technology

____ cells is the process of combining two or more cells into a single cell.

A. Merging B. Splitting C. Transforming D. Spacing

Computer Science & Information Technology

Organization policies are generally created in response to the requirement to meet certain criteria. Which of the following best details these requirements?

A. Procedures B. Standards C. Baselines D. Policy Requirements Document (PRD)

Computer Science & Information Technology

Select the correct class used to assert views of an Android Application

1. android.test.ViewAsserts 2. junit.framework.Assert 3. android.test.MoreAsserts 4. None of the

Computer Science & Information Technology