A PivotTable report filter is a(n) ____ field in a PivotChart.

A. legend
B. axis
C. report filter
D. column


Answer: C

Computer Science & Information Technology

You might also like to view...

What is the output of the following function and function call?

void calculateCost(int count, float& subTotal, float taxCost); float tax = 0.0, subtotal = 0.0; calculateCost(15, subtotal,tax); cout << "The cost for 15 items is " << subtotal << ", and the tax for " << subtotal << " is " << tax << endl; //end of fragment void calculateCost(int count, float& subTotal, float taxCost) { if ( count < 10) { subTotal = count * 0.50; } else { subTotal = count * 0.20; } taxCost = 0.1 * subTotal; } a. The cost for 15 items is 3.00, and the tax for 3.00 is 0.30; b. The cost for 15 items is 0.00, and the tax for 3.00 is 0.00; c. The cost for 15 items is 0.00, and the tax for 3.00 is 0.30; d. The cost for 15 items is 3.00, and the tax for 3.00 is 0.00;

Computer Science & Information Technology

Your company wants to secure the new data center physically. The company has hired a security guard but wants to find a way so that only one person at a time can enter in the data center. As people enter, they will have to show the security guard identification that authorizes them to enter the data center.   What is your company’s new security called?

A. Theft prevention B. Mantrap C. Entry control roster D. Security outpost

Computer Science & Information Technology

A(n) _______________ is a clickable area on an image that, when clicked, links to a different location on the same page or to another page.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

Pretty Good Privacy (PGP) offers strong protection for email.

a. true b. false

Computer Science & Information Technology