Steve, a school student, is working on a Microsoft Word document for an assignment. He saves the document for the first time by clicking the Save button. Which of the following is the consequence of the action performed by Steve??

A. ?The Save As screen opens in Backstage view since the document is being saved for the first time.
B. ?The document is saved with a default name and closed automatically.
C. ?A warning message appears stating that the Save As button should be used the first time a document is being saved.
D. ?An error message appears because a document with no content cannot be saved.


Answer: A

Computer Science & Information Technology

You might also like to view...

Which line will add the value stored in the variable pizza to the food() array?

``` var food = new Array("burger", "chips", "subs", "lasagna"); var pizza = "pepperoni pizza"; ``` a. food[0] = pizza; b. pizza.push(food); c. food.push(pizza); d. This cannot be done.

Computer Science & Information Technology

If conflicting settings occur, the setting on the ________ in the form will override the field property setting in the table

Fill in the blank(s) with correct word

Computer Science & Information Technology

Use the INPUT statement to accomplish the task:

Input text into a variable named car manufacturer.

Computer Science & Information Technology

Which statements will execute successfully? (Choose 2)

A) SELECT employee_id, last_name, job_id, department_id, hire_date FROM employees ORDER BY 3; B) SELECT first_name, last_name FROM employees ORDER BY employee_id DES; C) SELECT first_name, last_name, first_name||last_name fullname FROM employees ORDER BY fullname; D) SELECT employee_id, first_name, last_name FROM employees ORDER BY employee_id DESCEND;

Computer Science & Information Technology