You would use a ________ chart to show a trend over of a period of time

A) pie
B) line
C) bar
D) column

B

Computer Science & Information Technology

You might also like to view...

Nano Server is a general-purpose Windows server that can be used to deploy any one of dozens of server roles and features.

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

Computer Science & Information Technology

You have three identical prizes to give away and a pool of 10 finalists. The finalists are assigned numbers from 1 to 10. Write a program to randomly select the numbers of 3 finalists to receive a prize. Make sure not to pick the same number twice. For example, picking finalists 3, 6, 2 would be valid but picking 3, 3, 11 would be invalid because finalist number 3 is listed twice and 11 is not a valid finalist number. Random number generation is discussed in Chapter 6, but for this problem you can insert the following line of code to generate a random number between 1 and 10:

``` int num = (int) (Math.random() * 10) +1; ``` This project uses random numbers in a loop. You might wish to introduce the Random class instead of Math.random().

Computer Science & Information Technology