To apply a theme, you click Themes in the:
A) Themes group on the DESIGN tab. B) Arrange group on the FORMAT tab.
C) Arrange group on the DESIGN tab. D) Themes group on the FORMAT tab.
A
You might also like to view...
A pre-installed report feature that provides a comprehensive summary of the computer's overall performance is called a:
A) Performance Analysis Report B) Stability Index Report C) Computer Maintenance Report D) System Diagnostics Report
Which of the following statements are true?
Consider the following two Java code segments: Segment 1 Segment 2 ``` int i = 0; for (int i = 0; i <= 20; i++) { while (i < 20) { System.out.println(i); i++; } System.out.println(i); } ``` a. The output from these segments is not the same. b. The scope of the control variable i is different for the two segments. c. Both (a) and (b) are true. d. Neither (a) nor (b) is true.