Match the following terms to their meanings:

I. Custom show A. Used to annotate a presentation
II. Left-pointing arrow B. Used to navigate to any slide
III. Pen C. Used to toggle between a presentation and a black screen
IV. Go to Slide D. A presentation within a presentation in which several slides
V. B key are grouped for a particular audience
E. Displays the previous slide


D, E, A, B, C

Computer Science & Information Technology

You might also like to view...

What is displayed by this program?

``` #include void seven(int *xp); int main(void) { int x, y; x = 5; y = 6; seven(&x); seven(&y); printf("%4d%4d\n", x, y); return(0); } void seven(int *xp) { int y; y = *xp + 2; *xp = y * 3; } ``` a. 21 24 b. 21 8 c. 5 6 d. 5 8 e. none of the above

Computer Science & Information Technology

Most documentation prepared for the lay person to explain how to use a particular piece of software is written by a __________ __________.

Fill in the blank(s) with correct word

Computer Science & Information Technology

The vi commands sequence: dd G p

a: deletes the current line and saves it in the G buffer b: deletes the current line and place it after the letter G c: deletes two lines and place them in the G buffer d: move s the current line to the end of the file e: deletes the letter G

Computer Science & Information Technology

In Word, a green wavy underline denotes a potential ________ error

A) grammar B) file C) computer D) spelling

Computer Science & Information Technology