Emma completes one of her class assignments using Microsoft PowerPoint 2016. She now wants to have a brief look at all the slides to ensure that she has used the same font and theme for every slide. In this scenario, Emma can view all her slides at once by switching to _____ view.

A. ?Slide Sorter
B. ?Normal
C. ?Presenter
D. ?Slide Master

Answer: A

Computer Science & Information Technology

You might also like to view...

Which of the following is an argument in favor of ethical egoism?

a. Ethical egoism is supported by verses in the Bible. b. People are naturally altruistic. c. The community can benefit when individuals put their well-being first. d. It is not true that people naturally act in their own long-term self-interest. e. Ethical egoism treats all persons as moral equals.

Computer Science & Information Technology

What is the output for the second statement in the main method?

``` public class Foo { static int i = 0; static int j = 0; public static void main(String[] args) { int i = 2; int k = 3; { int j = 3; System.out.println("i + j is " + i + j); } k = i + j; System.out.println("k is " + k); System.out.println("j is " + j); } }``` a. k is 0 b. k is 1 c. k is 2 d. k is 3

Computer Science & Information Technology