The ________ function is the default summary statistic for PivotTables

A) SUM B) AVERAGE C) MIN D) MAX


A

Computer Science & Information Technology

You might also like to view...

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

1. A case structure is the only decision structure that can be used in a menu-driven program. 2. GUI stands for graphical user interface. 3. Users find it distracting if a menu is repeatedly displayed after a selected task is performed. 4. A multiple-level menu must include at least two submenus.

Computer Science & Information Technology

To create a hypertext link to a document on the Internet, you need to know its ____.

A. communications protocol B. URL C. relative pathname D. target

Computer Science & Information Technology

Which of the following statements is TRUE when comparing forms and reports?

A) Themes can be used with Reports, but not with Forms. B) The same wizard can be used for creating forms and reports. C) Forms and reports contain the same controls. D) Creating forms and reports begins by sketching an outline of the form or report.

Computer Science & Information Technology

Consider the following definition of a recursive method.      public static int foo(int n)          //Line 1      {                                        //Line 2         if (n == 0)                      //Line 3                return 0;                      //Line 4         else                                  //Line 5                return n + foo(n - 1);          //Line 6      }Which of the statements represent the base case?

A. Statements in Lines 3 and 4 B. Statements in Lines 5 and 6 C. Statements in Lines 3, 4, and 5 D. None of these

Computer Science & Information Technology