What is the Clipboard used for? What kinds of items can you store on the Clipboard? How many times can you paste Clipboard items? List two methods you can use to change the order of the slides. How do you select a series of slides in the Slides tab?

What will be an ideal response?


The Clipboard is a temporary storage place in the computer’s memory. You can store slide content, layouts, and formats on the Clipboard. You can paste Clipboard items as many times as you want. You can change the order of the slides by using drag-and-drop editing as well as by using the cut-and-paste method. To select a series of slides in the Slides tab, click the first slide, press and hold Shift, and then click the last slide in the series.

Computer Science & Information Technology

You might also like to view...

Find the error(s) in each of the following program segments, and explain how the error(s) can be corrected

a) ``` int g() { cout << "Inside function g" << endl; int h() { cout << "Inside function h" << endl; } } ``` b) ``` int sum( int x, int y ) { int result; result = x + y; } ``` c) ``` int sum( int n ) { if ( n == 0 ) return 0; else n + sum( n - 1 ); } ``` d) ``` void f( double a ); { float a; cout << a << endl; } ``` e) ``` void product() { int a; int b; int c; int result; cout << "Enter three integers: "; cin >> a >> b >> c; result = a * b * c; cout << "Result is " << result; return result; } ```

Computer Science & Information Technology

An online journal used to publish company information in an informal manner is known as a(n):

A) browser B) portal C) Web log D) RSS feed

Computer Science & Information Technology

Describe how the keys are used to encrypt and unencrypt data with public-key encryption.

What will be an ideal response?

Computer Science & Information Technology

Todd works for an advertising firm and handles advertising projects for various clients. To keep track of the projects he has for each client, he wants to organize the client and project files on his hard disk so that he can quickly locate them. Describe how Todd can effectively organize his files for each client and each of the projects he handles for them.

What will be an ideal response?

Computer Science & Information Technology