PowerPoint's ________ make it possible to move back and forth between slides and go to the end of a presentation

A) plotting aids
B) navigation tools
C) locator links
D) transition effects

B

Computer Science & Information Technology

You might also like to view...

Which of the following statements about security awareness is not true?

A. The purpose of security awareness is to focus attention on security. B. Awareness is training. C. Security awareness programs are designed to remind users of appropriate behaviors. D. A posted reminding users not to write their password down is an example of an awareness program.

Computer Science & Information Technology

Do the following two programs produce the same result?

``` Program I: public class Test { public static void main(String[] args) { int[] list = {1, 2, 3, 4, 5}; reverse(list); for (int i = 0; i < list.length; i++) System.out.print(list[i] + " "); } public static void reverse(int[] list) { int[] newList = new int[list.length]; for (int i = 0; i < list.length; i++) newList[i] = list[list.length - 1 - i]; list = newList; } } Program II: public class Test { public static void main(String[] args) { int[] oldList = {1, 2, 3, 4, 5}; reverse(oldList); for (int i = 0; i < oldList.length; i++) System.out.print(oldList[i] + " "); } public static void reverse(int[] list) { int[] newList = new int[list.length]; for (int i = 0; i < list.length; i++) newList[i] = list[list.length - 1 - i]; list = newList; } } ``` a. Yes b. No

Computer Science & Information Technology