By default, how many heading levels does a table of contents show?

A. 1
B. 2
C. 3
D. 4


Answer: C

Computer Science & Information Technology

You might also like to view...

Which of these recording techniques has a decision maker who is observed in the left column and all of their actions in the right-hand column?

A) adjective pairs B) categories C) scales D) analyst's play script

Computer Science & Information Technology

In boating, colored flags arranged in various orders and combinations have been used for centuries to convey messages to other boats and ships or the persons on shore. If you have three red, four green, and two blue flags, how many different messages (arrangements) could you put up on the mast of the ship if you used only four flags at one time?

A. 362,880 B. 72 C. 3,024 D. 504 E. 126

Computer Science & Information Technology

A __________ is a password guessing program.

A. password hash B. password cracker C. password biometric D. password salt

Computer Science & Information Technology

What is displayed by the code fragment below if the memory for next immediately follows the memory for word?

``` char word[12], next[4] = "Joe"; word[0] = 'c'; word[1] = 'a'; word[2] = 't'; printf("%s\n", word); ``` a. a line with just the word "cat" b. a line with the word "cat" followed by nine blanks c. the word "cat" followed by whatever garbage is in word[3] through word[11] followed by Joe (unless there is a null character somewhere in word[3] through word[11]) d. an error message e. the word "cat", the word "Joe", and the word "cat" again

Computer Science & Information Technology