You can ____ a bullet so it is indented from the left side, indicating it is a subbullet of the previous one.

A. demote
B. concatenate
C. subjugate
D. redent


Answer: A

Computer Science & Information Technology

You might also like to view...

To declare a c-string and initialize it to the value of "phonebook",

a. char s1=phonebook; b. char s1[10]="phonebook"; c. c-string phonebook; d. char s1[10]=phonebook;

Computer Science & Information Technology

What is the time complexity of the following program?

int N = 0, M = 10; for (int x = 0; x <= M; x++ ) { for (int y = 0; y <= N; y++ ) { writeToDisk(""something""); } } a. O(M*N) b. O(N) c. O(N^2) d. O(M+N)

Computer Science & Information Technology

Which of the following is NOT an e-mail service?

A. Google Gmail B. Microsoft Outlook C. Yahoo! Mail D. NBC Mail

Computer Science & Information Technology

The percentage of time your CPU is working is referred to as CPU ________

A) throughput B) capacity C) usage D) latency

Computer Science & Information Technology