Using the fill handle on a cell containing a formula:

A) cannot complete a sequence of dates in a column.
B) copies the formula in the active cell to other cells and adapts it based upon the type of cell references in the original formula.
C) changes the background color of the selected cells to yellow.
D) has two or more sub-commands related to the command.

B

Computer Science & Information Technology

You might also like to view...

Which of the following has the largest storage capacity?

A) Blu-ray B) CD-RW C) RAM D) DVD-RW

Computer Science & Information Technology

What is the output of the following code?

int list[5] = {4, 7, 5, 3, 0}; int x = 3; list[x] = list[2 * x – 4]; list[x+1] += 6; list[x-1] = list[x-2]; cout << list[1] << list[2] << list[3] << list[4];

Computer Science & Information Technology