The __________ is a template you can modify to create a consistent look for your presentation.

Fill in the blank(s) with the appropriate word(s).

slide master

Computer Science & Information Technology

You might also like to view...

You can click the ____ button in the Photo Album dialog box to rotate a picture to the left in increments.

A. Rotate Left 10° B. Rotate Left 45° C. Rotate Left 90° D. Rotate Left 180°

Computer Science & Information Technology

Analyze the following code:

``` import java.util.*; public class Test { public static void main(String[] args) { PriorityQueue queue = new PriorityQueue( Arrays.asList(60, 10, 50, 30, 40, 20)); while (!queue.isEmpty()) System.out.print(queue.poll() + " "); } }``` a. The program displays 60 10 50 30 40 20 b. The program displays 10 20 30 40 50 60 c. The program displays 60 50 40 30 20 10 d. There is no guarantee that the program displays 10 20 30 40 50 60

Computer Science & Information Technology