Scientists are studying the mysterious disappearance of bees in North America (and world wide). In doing so, they have collected a number of dead bees and weighed them. The weights gathered by one scientist are listed below. Measurements are shown in mg.
95, 92, 93, 95, 92, 100, 89, 83, 88, 89, 88, 89, 87, 95, 95, 92, 101, 78, 79, 82, 83, 95, 88, 90, 91, 89, 85, 82, 81, 94, 94, 95, 96, 97, 98, 95, 98, 103, 95, 91, 96, 93, 82, 95, 88, 89, 90.
Write a computer program that analyses this data and produces:
| Level | Requirements |
| 1 | Prints the weights on the screen. Counts the number of bees and displays the result. |
| 2 | Finds the minimum weight (and displays the result). |
| 3 | Sorts the weights. Prints the results in sorted order. Finds the median weight (and displays the result). |
| 4 | Makes a histogram of the weights with these categories: 75-79, 80-84, 85-98, 90-94, 95-99, 100-105. |
| 4+ | Finds the mode (and displays the result). |
You can not acheive a higher level without achieving all of the ones below it. When you are writing this program, just make a title and print the results for each part of the above. Formatting counts for nothing, so get to the results.