To change fill colors, textures and fonts for your chart, click the Chart ____ button.
A. Styles
B. Layout
C. Gallery
D. Themes
Answer: A
Computer Science & Information Technology
You might also like to view...
Soft Edges and 3-D Rotation are types of:
A) typefaces. B) paragraph styles. C) type styles. D) picture styles.
Computer Science & Information Technology
Which of the following for loop headers will cause the body of the loop to be executed 100 times?
a)``` for(int i = 0; i <= 100; i++) ``` b)``` for(int i = 1; i < 100; i++) ``` c)``` for(int i = 1; i <= 101; i++) ``` d)``` for(int i = 0; i < 100; i++) ``` e) none of these for loops will execute the loop body 100 times
Computer Science & Information Technology