How do you easily and quickly select one full paragraph in Word or PowerPoint?

A) Press and hold Shift while you press the right arrow key.
B) Triple-click in the paragraph.
C) Press and hold Ctrl while you click in the paragraph.
D) Double-click in the paragraph.

B

Computer Science & Information Technology

You might also like to view...

Which of the following is a valid declaration for a two-dimensional array?

a) int[][] matrix; b) int[2] matrix; c) int[]** matrix; d) int[] matrix; e) none of these are correct

Computer Science & Information Technology

Suppose j, sum, and num are int variables, and the input is 26 34 61 4 -1. What is the output of the code?sum = 0;cin >> num;for (int j = 1; j > num;}cout

A. 124 B. 125 C. 126 D. 127

Computer Science & Information Technology