To change save options, display the Save screen in the PowerPoint Properties dialog box, and then select or deselect appropriate check boxes. _________________________
Answer the following statement true (T) or false (F)
False
You might also like to view...
State whether each of the following is true or false. If false, explain why.
a) To refer to a particular location or element within an array, we specify the name of the array and the value of the par- ticular element. b) An array declaration reserves space for the array. c) To indicate that 100 locations should be reserved for integer array p, the programmer writes the declaration p[ 100 ]; d) A JavaScript program that initializes the elements of a 15-element array to zero must contain at least one for statement. e) A JavaScript program that totals the elements of a double-subscripted array must contain nested for statements.
What does the following line of code do to the selected cell?Selection.Font.Bold = False
A. Turns on bold formatting in the selected cell. B. Replaces the contents of the selected cell with "False" C. Turns off bold formatting in the selected cell. D. Nothing, it contains a syntax error.
Which type of firewall packet inspection inspects each packet fresh, with no regard to the state of the packet's relation to any other packet?
A. Stateful B. Stateless C. Port D. Filtered
Which of the following loops prints "Welcome to Java" 10 times?
A: for (int count = 1; count <= 10; count++) { System.out.println("Welcome to Java"); } B: for (int count = 0; count < 10; count++) { System.out.println("Welcome to Java"); } C: for (int count = 1; count < 10; count++) { System.out.println("Welcome to Java"); } D: for (int count = 0; count <= 10; count++) { System.out.println("Welcome to Java"); } a. BD b. ABC c. AC d. BC e. AB