Match each of the following charts of chart-related buttons to their function or corresponding tab:

I. line chart
II. column chart
III. pie chart
IV. Switch Row/Column button
V. Legend button

A. shows how something relates to a whole
B. Chart Tools Layout tab
C. shows trends over time
D. shows comparisons between categories
E. Chart Tools Design tab


C, D, A, E, B

Computer Science & Information Technology

You might also like to view...

Analyze the following recursive method.

``` public static long factorial(int n) { return n * factorial(n - 1); } ``` a. Invoking factorial(0) returns 0. b. Invoking factorial(1) returns 1. c. Invoking factorial(2) returns 2. d. Invoking factorial(3) returns 6. e. The method runs infinitely and causes a StackOverflowError.

Computer Science & Information Technology

Discuss the effective use of graphics. Include the questions to ask when considering how each graphic you add to a page will contribute to it.

What will be an ideal response?

Computer Science & Information Technology

Fill in the blanks for the HTML code below to embed an image called logo.jpg on a Web page. Suppose logo.jpg is in the same folder as the HTML document that embeds it.

<________ = "l__________" />

Computer Science & Information Technology

When a program is installed, it is added to the ________ menu in Windows 7

A) Software B) All Programs C) Programs D) Installed Programs

Computer Science & Information Technology