Match the following terms to their meanings:

I. range
II. Copy as Picture command
III. nonadjacent range
IV. Copy
V. select all cells in a worksheet

A. C10:C20 and E10:E20
B. default copy option
C. cannot edit individual cell data
D. press Ctrl+A twice
E. group of adjacent or contiguous cells

E, C, A, B, D

Computer Science & Information Technology

You might also like to view...

Write the statement to declare a five-element procedure-level array nameddecGPA, and initialize the array with the following values: 2.58, 3.85, 3.6, 1.45, 2.75. Then write a statement to assign the number 2.55 to the last element in the array.

What will be an ideal response?

Computer Science & Information Technology

Which of the following statements is false?

a. A runnable thread can enter the timed waiting state for a specified interval of time. It transitions back to the runnable state when that time interval expires or when the event it’s waiting for occurs. b. Timed waiting threads and waiting threads can use a processor, if one is available. c. A runnable thread can transition to the timed waiting state if it provides an optional wait interval when it’s waiting for another thread to perform a task. Such a thread returns to the runnable state when it’s notified by another thread or when the timed interval expires—whichever comes first. d. Another way to place a thread in the timed waiting state is to put a runnable thread to sleep—a sleeping thread remains in the timed waiting state for a designated period of time (called a sleep interval), after which it returns to the runnable state.

Computer Science & Information Technology