In _________________________, as a character is typed Word inserts the character and moves all the characters to the right of the typed character one position to the right.

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


insert mode

Computer Science & Information Technology

You might also like to view...

Design SQL queries for the supermarket example that will return the information needed to make a table similar to that of Figure 17.10, except that markets are aggregated by state, and time is aggregated by months.

a. Use CUBE or ROLLUP operators. b. Do not use CUBE or ROLLUP operators. c. Compute the result table.

Computer Science & Information Technology

When program software is distributed free with the code or computer instructions available for anyone to modify, it is called:

A) freeware. B) code independent software. C) a distributed system. D) open source software.

Computer Science & Information Technology

What is the output of the following Java code?int x = 57;int y = 3;switch (x % 9){case 0:case 1:     y++;case 2:    y = y - 2;    break;case 3:     y = y + 2;case 4:     break;case 5:case 6:     y = y + 3;}System.out.println(y);      

A. 2 B. 5 C. 6 D. 57

Computer Science & Information Technology

Match the following terms to their meanings:

I. delimiter II. Show row III. Criteria row IV. Table row V. query A. used to set rules that determine which records will display B. displays a data source C. special character that surrounds a criterion's value D. enables you to ask questions about data in a database E. controls whether a field will be displayed in query results

Computer Science & Information Technology