The default number of sheets and the default view for Excel worksheets are ____, respectively.

A. Two and Normal
B. Two and Page Layout
C. One and Page Layout
D. One and Normal


Answer: D

Computer Science & Information Technology

You might also like to view...

What is the output of the following code fragment?

int f1(int n, int m) { if(n < m) return 0; else if(n==m) return m+ f1(n-1,m); else return n+ f1(n-2,m-1); } int main() { cout << f1(5,4); return 0; } a. 0 b. 2 c. 4 d. 8 e. infinite recursion

Computer Science & Information Technology

Explain the benefits of calling these get methods within the classes.

What will be an ideal response?

Computer Science & Information Technology

____ refers to a new use of existing technologies.

A. XML B. PHP C. AJAX D. JavaScript

Computer Science & Information Technology

Your organization uses several different backup models, depending on the needs of the asset owner. Which backup type is generally larger than the others and acts as the basis for many of the other backup types?

A. copy backup B. incremental backup C. differential backup D. full backup

Computer Science & Information Technology