Which of the following charts displays lines connecting data points to show trends over equal time periods?

A) Area chart B) Line chart C) Column chart D) Bar chart


B

Computer Science & Information Technology

You might also like to view...

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

1) A static variable represents class-wide information. 2) A program contains a separate copy of a static variable for each object that's instantiated. 3) Variables that are static have class scope. 4) Variables that are static have class scope. 5) Data members declared as readonly must be initialized in their declaration.

Computer Science & Information Technology

(Bubble Sort Enhancements) The bubble sort described in Exercise 6.11 is inefficient for large arrays. Make the following simple modifications to improve the performance of the bubble sort:

a) After the first pass, the largest number is guaranteed to be in the highest-numbered element of the array; after the second pass, the two highest numbers are “in place,” and so on. Instead of making nine comparisons on every pass, modify the bubble sort to make eight comparisons on the second pass, seven on the third pass, and so on. b) The data in the array may already be in the proper order or near-proper order, so why make nine passes if fewer will suffice? Modify the sort to check at the end of each pass if any swaps have been made. If none have been made, then the data must already be in the proper order, so the program should terminate. If swaps have been made, then at least one more pass is needed.

Computer Science & Information Technology

The contextual tab on the ribbon that displays when your insertion point is within a table

a. Table Layout Tools b. Table Design Tools c. Table Tools

Computer Science & Information Technology

The file where an object is embedded or linked

a. Read-only file b. Destination file c. Source file

Computer Science & Information Technology