Match the following shortcut actions to the selection in Word or PowerPoint:

I. double-click
II. triple-click
III. press and hold Ctrl while you click to select
IV. press and hold Shift while you press the right arrow key
V. press and hold Ctrl while you press the letter A

A. a sentence
B. a paragraph
C. one character to the right
D. entire document
E. a word

E, B, A, C, D

Computer Science & Information Technology

You might also like to view...

Access automatically restores Hourglass and Echo actions to ________ settings after a macro has finished running

A) default B) trusted C) untrusted D) busy

Computer Science & Information Technology

What is returned by function two defined below for the call two( 13 ) ?

``` int two ( int n ) { int ans; if ( n == 1 ) ans = 0; else ans = 1 + two (n / 2); return ans; } ``` a. 3 b. 7 c. 0 d. none of the above

Computer Science & Information Technology