Press and hold ____ while pressing the arrow keys to move an image in 10-pixel increments.

A. [Esc]
B. [Shift]
C. [Alt]
D. [F1]


Answer: B

Computer Science & Information Technology

You might also like to view...

What will be displayed by the following program when the button is clicked?

Private Sub btnDisplay_Click(...) Handles btnDisplay.Click Dim a, b, c, x As Double a = 5 b = 3 c = 6 If a > c Then x = 1 Else If b > c Then x = 2 Else x = 3 txtBox.Text = CStr(x) End If End If End Sub``` ``` (A) 1 (B) 2 (C) 3 (D) None of the above

Computer Science & Information Technology

When the number of repetitions needed for a set of instructions is known before they are executed in a program, the best repetition structure to use is a(n)

(A) Do While...Loop structure. (B) Do...Loop Until structure. (C) For...Next loop. (D) If block.

Computer Science & Information Technology

This is a decision whether to add a process to those that are at least partially in main memory and therefore available for execution:

A) ?long-term scheduling ? B) ?I/O scheduling C) ?short-term scheduling ? D) ?medium-term scheduling

Computer Science & Information Technology

The default order of the ORDER BY clause is descending.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology