If you want to have a self-playing presentation, such as one that might be displayed in a kiosk, you use the ________ tab to set up the changing of the slides

A) Insert
B) Slide Show
C) Animations
D) Transitions

D

Computer Science & Information Technology

You might also like to view...

Which of the following is NOT a benefit of allowing viewers to post comments on your blog?

A) They can customize your blog's look and feel. B) They can direct you to other interesting websites. C) They can direct you to other interesting blogs. D) You can find out what your readers think.

Computer Science & Information Technology

What is the output of the following program?

``` public class Test { public static void main(String[] args) { int[][] values = {{3, 4, 5, 1}, {33, 6, 1, 2}}; int v = values[0][0]; for (int row = 0; row < values.length; row++) for (int column = 0; column < values[row].length; column++) if (v < values[row][column]) v = values[row][column]; System.out.print(v); } } ``` a. 1 b. 3 c. 5 d. 6 e. 33

Computer Science & Information Technology