A worksheet where totals from other worksheets are displayed and summarized is a:

a. summary sheet
b. detail sheet
c. table


A. summary sheet

Computer Science & Information Technology

You might also like to view...

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

1. Without a break statement in a switch, execution falls through to the next case. A case label can be of type double. 2."Decision step" is one way to refer to an if statement 3. Suppose you had the following if statement: if ((a != a) && (b > c)) cout << "Yes, sir"; 4. Using the short circuit evaluation method, (b > c) would be evaluated some of the time, not all the time. 5. C++ will automatically display the floating-point result of the product $1.25 x $2.35 accurately to two decimal places.

Computer Science & Information Technology

Which of the following statements about adapters is false?

a. An adapter class implements an interface. b. An adapter class provides a default (empty) implementation of every method in the interface. c. Programmers override selected adapter methods. d. A ComponentListener is a ComponentAdaptor.

Computer Science & Information Technology

Report view allows a report to be viewed onscreen in a continuous page layout

Indicate whether the statement is true or false

Computer Science & Information Technology

Which of the following would display "Good day!" on the screen?

A. WriteLine.Console("Good day!"); B. Console.WriteLine["Good day!"]; C. WriteLine.Console{"Good day!"}; D. Console.WriteLine("Good day!");

Computer Science & Information Technology