Question: Create a java class called GradeStatistics Need Comment Create GradeStatistics class Define populateGrades() method and work correctly Define sortGrades() method and works correctly Define getMean()
Create a java class called GradeStatistics
Need Comment

Create GradeStatistics class
Define populateGrades() method and work correctly
Define sortGrades() method and works correctly
Define getMean() method and works correctly
Define getMedian() method and works correctly
Define getMinMax() method and works correctly
Define printGrades() method and works correctly
Define main() follows the order, correct format and output
Sample Runs: (Inputs from the keyboard are shown in green color) Run1: (this is not part of the output) How many students do you have in the class: 4 Enter grade of Student 1: 10 Enter grade of Student 2: 100 Enter grade of Student 3: 20 Enter grade of Student 4: 30 The grades are: 10.0, 100.0, 20.0, 30.0 The sorted grades are: 10.0, 20.0, 30.0, 100.0 Mean = 40.0 Median = 25.0 Min = 10.0 Max = 100.0 Run2: this is not part of the output) How many students do you have in the class: 5 Enter grade of Student 1: 100 Enter grade of Student 2: 90.5 Enter grade of Student 3: 95.5 Enter grade of Student 4: 10 Enter grade of Student 5: 20.75 The grades are: 100.0, 90.5, 95.5, 10.0, 20.75 The sorted grades are: 10.0, 20.75, 90.5, 95.5, 100.0 Mean = 63.35 Median = 90.5 Min = 10.0 Max = 100.0
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
