Match the following shortcut keys in PowerPoint 2013 to their function:

I. Type B in Slide Show view
II. Esc in Slide Show view
III. Ctrl+Tab
IV. Spacebar in Slide Show view
V. Shift+Tab

A. ends the slide show
B. advances to the next slide
C. inserts an indent within a table cell
D. moves the insertion point within a table to the previous cell
E. changes the slide to a black slide


E, A, C, B, D

Computer Science & Information Technology

You might also like to view...

The ____________ inherits fields, properties, and methods from the base class without any of them having to be rewritten.

a. super instance b. derived class c. initialized object d. copy class

Computer Science & Information Technology

Given the following classes and their objects:

``` class C1 {}; class C2 extends C1 {}; class C3 extends C1 {}; C2 c2 = new C2(); C3 c3 = new C3(); ``` Analyze the following statement: ``` c2 = (C2)((C1)c3);``` a. c3 is cast into c2 successfully. b. You will get a runtime error because you cannot cast objects from sibling classes. c. You will get a runtime error because the Java runtime system cannot perform multiple casting in nested form. d. The statement is correct.

Computer Science & Information Technology

____ testing conducted on error messages offers administrators and security professionals great insight into their own systems.

A. Inferential B. Differential C. Parallel D. Sequential

Computer Science & Information Technology

Explain the difference between a bound control and an unbound control.

What will be an ideal response?

Computer Science & Information Technology