Which of the following is not a good application for using a macro?
A) Inserting the same footer in one document after another
B) Adding unique content to a document
C) Performing routine editing and formatting
D) Adding the company logo to each document
B
You might also like to view...
Answer the following statements true (T) or false (F)
1. DKIM is designed to provide an e-mail authentication technique that is transparent to the end user. 2. Most browsers come equipped with SSL and most Web servers have implemented the protocol. 3. Search engines support HTTPS. 4. The IAB included authentication and encryption as necessary security features in IPv6. 5. Transport mode provides protection primarily for lower-layer protocols.
What will be printed by the following statement if the value of the select is ‘Q’:
switch (select) { case ‘Q’ : case ‘q’: cout << “quit ”; case ‘R’: case ‘r’: cout << “redo ”; break; case ‘P’: case ‘p’: cout << “play ”; default: cout << “other ”; } a) quit b) quit redo c) quit redo play d) other