A ________ is the primary document used in Excel to save and work with data that is arranged in columns and rows

A) workbook
B) notebook
C) range
D) worksheet


D

Computer Science & Information Technology

You might also like to view...

What is the output of the following program.?

``` #include using namespace std; struct ShoeType { char style; double price; }; int main() { ShoeType shoe1, shoe2; shoe1.style = 'P'; shoe1.price = 98.98; cout << shoe1.style << " $" << shoe1.price << endl; shoe2 = shoe1; //Put shoe2 on sale! shoe2.price = shoe1.price/2; cout << shoe2.style << " $" << shoe2.price << endl; } ```

Computer Science & Information Technology

The ____ method can be used to add elements to the end of an array.

A. push B. >> C. << D. A and C

Computer Science & Information Technology

?The _____ value of the overflow style keeps an element at a specified size, adding scroll bars only as they are needed.

A. ?scroll B. ?visible C. ?auto D. ?hidden

Computer Science & Information Technology

Proper segregation of duties requires that the responsibility approving a payment be separated from posting to the cash disbursements journal.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology