The ____ folder is the default location for all saved messages.

A. Drafts
B. Documents
C. Messages
D. Downloads


Answer: A

Computer Science & Information Technology

You might also like to view...

What is the name of a key in one table that is required to matche a primary key in another table?

a. Foreign key. b. Matching key. c. Joined key. d. Linking key.

Computer Science & Information Technology

What is wrong with the above code?

Code for the next three questions – this code is supposed to fill and array with random numbers 1. ``` int numList[1000]; ``` 2. ``` srand(123); ``` 3. ``` for(int i = 0; i<1000; i++) ``` 4. ``` { numList[i] = rand()%1000 +5; cout << numList[i]; } ``` A. Line 2 – should be seed(123); B. Line 5 – rand() should have a number in the parentheses for random number generation C. Line 3 – should be i=1000; D. None the above.

Computer Science & Information Technology

To hide sub-branches of a directory tree, click the ________ icon

A) close sign B) hide sign C) plus sign D) minus sign

Computer Science & Information Technology

Which of the following controls can be implemented so an organization can configure multiple computers by setting a single policy for enforcement?

A. group-based access control B. computer-based access control C. role-based access control D. system access control

Computer Science & Information Technology