Pressing the _____ key moves a list item up a level.
A. Enter
B. Tab
C. Shift + Tab
D. Ctrl + Tab
Answer: C
Computer Science & Information Technology
You might also like to view...
Given the class definition:
class CreateDestroy { public: CreateDestroy() { cout << "constructor called, "; } ~CreateDestroy() { cout << "destructor called, "; } }; What will the following program output? int main() { for ( int i = 1; i <= 2; ++i ) CreateDestroy cd; return 0; } a. constructor called, destructor called, constructor called, destructor called, b. constructor called, constructor called, c. constructor called, constructor called, destructor called, destructor called, d. Nothing.
Computer Science & Information Technology
What are the 5 classes of IPv4 addresses?
What will be an ideal response?
Computer Science & Information Technology