Which of the following keys is used in conjunction with other keys to invoke keyboard shortcuts?

A. Ctrl
B. Enter
C. Esc
D. Backspace


Answer: A

Computer Science & Information Technology

You might also like to view...

What is the output of the following code fragment?

int f1(int base, int limit) { if(base > limit) return -1; else if(base == limit) return 1; else return base * f1(base+1, limit); } int main() { cout << f1(2,4)<

Computer Science & Information Technology

The ______________ statement selects among multiple actions based on the possible values of an integer variable or expression, or a String.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

Reduce the fraction to lowest term.

6/24

Computer Science & Information Technology

Two-dimensional arrays are often used to represent _______.

a) a pie chart b) distances c) lines d) tables

Computer Science & Information Technology