Using the____, you can choose the arrangement of placeholders on a new slide.
A. Themes gallery
B. New Slide gallery
C. Text gallery
D. layout gallery
Answer: D
You might also like to view...
How do you view a higher-resolution image of your document on your monitor screen?
What will be an ideal response?
Given the following structure decaration, Employee is
``` struct Employee { string name; int idNum; }; ``` a. a member b. an array c. a tag d. None of these
A set of options where a visitor can select as many options in a set as they like.
a. Hidden fields b. Select boxes c. Radio buttons d. Password box e. Checkboxes f. Email, telephone, and URL input types
What is the effect of the join statement in the following code?
``` var theArray1 = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ], theArray2 = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ]; var value = theArray1.join( " " ); ``` a) The join method will concatenate the values of theArray2 to theArray1. b) The join method will concatenate the values of theArray1 to theArray2. c) The join method will create a string from the values in theArray1. d) The join method will create a string with the values of theArray2 concatenated to the values of theArray1.