____ mode hides all the commands and just displays the document.

A. Full Screen
B. Mouse
C. Read
D. Document


Answer: A

Computer Science & Information Technology

You might also like to view...

Which one of the following statements assigns the string "Beagle" to the hound object's type field?

Look at the following code sample: ``` struct Pet { public string name; public int age; public string type; } Pet hound = new Pet(); ``` a. hound = new type("Beagle"); b. type = "Beagle"; c. hound.type = "Beagle"; d. Pet.hound.type("Beagle");

Computer Science & Information Technology

What does iterable mean? Name two builtin objects that are iterable. Which control structure can you use to loop through an iterable object?

What will be an ideal response?

Computer Science & Information Technology

Which of the following statements is false?

a. You filter elements to produce a stream of intermediate results that match a predicate. b. IntStream method filter receives an object that method that takes one parameter and returns a boolean result. c. If the result of calling filter's argument is true for a given element, that element is included in the resulting stream. d. All of the above statements are true.

Computer Science & Information Technology

In ____________________ view, you can type topic headings and subheadings for a document.

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

Computer Science & Information Technology