The ____ shows a thumbnail for each slide in the presentation file.

A. Slides tab
B. Outline tab
C. Slide pane
D. Notes pane

Answer: A

Computer Science & Information Technology

You might also like to view...

Given the following code fragment and the input value of 4.0, what output is generated?

float tax; float total; cout << "enter the cost of the item\n"; cin >> total; if ( total >= 3.0) { tax = 0.10; cout << total + (total * tax) << endl; } else { cout << total << endl; } a. 3 b. 3.3 c. 4.0 d. 4.4

Computer Science & Information Technology

MC Which of the following sticky values causes the component to stretch the entire width of its container?

a) S+E. b) W+E. c) N+S. d) Both b and c.

Computer Science & Information Technology