Word's AutoRecover feature allows you to:

A) ONLY access temporary files that were not saved.
B) quickly save all of your open documents.
C) ONLY revert back to an earlier version of your document.
D) access files that weren't saved and revert back to earlier versions of documents.


D

Computer Science & Information Technology

You might also like to view...

Which one of the following statements initializes the color variable with the string "red"?

a. color = "red"; b. string color = "red"; c. "red" = string color; d. string color("red");

Computer Science & Information Technology

The below question refer to the program segment. (Assume that all variables are of type int.)

``` z = 0; g = 0; s = 0; i = 0; while (i < 50) { cin >> t; s += t; if (t >= 0) g++; else z++; i++; } ``` The value stored in variable z at the end of the execution of the loop could best be described as the . a. number of positive items read b. sum of all positive items read c. number of negative items read d. sum of all negative items read e. sentinel value terminating the loop

Computer Science & Information Technology

The ____________________ blending mode functions as the exact opposite of the Multiply blending mode.

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

Computer Science & Information Technology

Which of the following statements is sometimes included as the first statement in a Ruby script?

A. #!/usr/local/bin/ruby -w B. chmod +x C. %Ruby_execute D. #!/user/

Computer Science & Information Technology