The ________ tab in used to insert, edit, and delete comments about the presentation
A) Preview B) Modify C) Edit D) Review
D
You might also like to view...
Which of the following is not true about bool values and how they're output with the output stream?
a. The old style of representing true/false values used -1 to indicate false and 1 to indicate true. b. A bool value outputs as 0 or 1 by default. c. Stream manipulator boolalpha sets the output stream to display bool values as the strings "true" and "false". d. Both boolalpha and noboolalpha are “sticky” settings.
Answer the following statements true (T) or false (F)
1. A thrown exception for which there is no matching catch block will cause the execution of the program to abort. 2. At most one catch block may be attached to a single try block. 3. A program may not contain a "regular" version of a function and a template version of the function at the same time. 4. There is no difference between defining an object of an ordinary class and an object of a template class. 5. The Standard Template Library (STL) contains templates for useful algorithms and data structures.