When a section of text needs to be repeated from one location to another in a document, you can use the ________ command rather than retyping the text

A) Copy
B) Paste
C) Cut
D) Sort


A

Computer Science & Information Technology

You might also like to view...

What is output by the following Java code segment?

int temp = 180; while (temp != 80) { if (temp > 90) { System.out.print("This porridge is too hot! "); // cool down temp = temp – (temp > 150 ? 100 : 20); } else { if (temp < 70) { System.out.print( "This porridge is too cold! "); // warm up temp = temp + (temp < 50 ? 30 : 20); } } } if (temp == 80) System.out.println("This porridge is just right!"); a. This porridge is too cold! This porridge is just right! b. This porridge is too hot! This porridge is just right! c. This porridge is just right! d. None of the above.

Computer Science & Information Technology

Outline how objects can be organized by using layers.

What will be an ideal response?

Computer Science & Information Technology

If a cell in a table is too narrow for text that you type, what happens?

A) The text automatically wraps in the cell. B) The text in the cell is truncated until you expand the cell through the Table features. C) The text automatically overlaps into the cell to the right. D) The cell expands to accommodate the text.

Computer Science & Information Technology

During the ____ generation of computing, the desktop machine shrunk to the size of a typewriter.

A. second B. third C. fourth D. fifth

Computer Science & Information Technology