Case 22-1
Hayley is working on a mail merge to draft a letter. She prepares the main documents, data sources, and merge fields.
?After entering addresses and names from a database, Hayley notices a distance between each address. To correct this, Hayley should:
A. ?click the Spelling & Grammar button in the Review tab.
B. ?click the Compare button in the Review tab.
C. ?click the Line & Spacing button in the Home tab.
D. ?click the Format Painter button in the Home tab.
Answer: C
You might also like to view...
For retina or high-density displays, designers need to supply images that are _____the intended size of a regular display
a. Four times b. One-half c. Three times d. Twice
What is the output of the following code:
char ch = ‘c’; if (ch > ‘g’) cout << “high”; else if (ch < ‘m’) cout << “low”; else cout << “middle”; char ch = ‘c’; if (ch > ‘g’) cout << “high”; else if (ch < ‘m’) cout << “low”; else cout << “middle”; char ch = ‘c’; if (ch > ‘g’) cout << “high”; else if (ch < ‘m’) cout << “low”; else cout << “middle”; a) high b) low c) middle d) c