Think of the ____ command as a creating individual, selectable objects.
A. Outline
B. Offset
C. Expand
D. Effect
Answer: C
You might also like to view...
The encryption of the string “security” to the string “tfdvsjuz” is an example of which form of encryption?
(a) Transposition ciphering. (b) Stenography. (c) Secret-key cryptography. (d) Substitution ciphering.
Initially, a ResultSet cursor is positioned _________.
a. before the first row b. at the first row c. at the last row d. after the last row
Match the scenario with the Word 2013 feature:
I. Print on only one side of the paper II. Add a Date completed property III. Remove personal data IV. Make a copy each time a file is saved V. Ensure that users of earlier Word versions can view all features in a Word 2013 file A. Check compatibility B. Document Inspector C. Customize document properties D. Always create backup copy E. Print options
int recFunc(int num){ if (num >= 10) return 10; else return num * recFunc(num + 1);} Consider the accompanying definition of a recursive function. What is the output of the following statement?cout << recFunc(10) << endl;
A. 10 B. 11 C. 100 D. 110