[solved]-Assignment 12 Chapter 8 Create Grades Class Following Api Constructor Grades Int Student C Q39033258
java
Assignment 12 Chapter 8 Create a “Grades” class with the following API Constructor Grades (int student Count, int min_grade, int max_grade) This will create an array of student grades. Each grade will be a random number from min_grade to max_grade, inclusive. Methods 1) toString() prints the grades in this format: grades: [78, 58, 76, 101, 59, 55, 84, 91, 84, 671 2) An accessor and a mutator for a grade 3) An equals method 4) A clone method 5) A method that sorts the grades in ascending order 6) A method that sorts the grades in descending order 7) A method that returns the highest grades 8) A method that returns the average grade to one decimal place. 9) A method that returns the median grade 10 ) A method that returns the modes 11 ) A method that returns an Array containing the number of F’s D’S C’s B’s and A’s [7, 2, 1, 0, 0] 12 ) A method that returns an Array containing each student’s letter grade [F, F, D, E, F, C, E, F, D, F) 13 ) The standard deviation of the grades to one decimal place 14 ) A method that sets a grade, given the index of the grade to be changede Show transcribed image text Assignment 12 Chapter 8 Create a “Grades” class with the following API Constructor Grades (int student Count, int min_grade, int max_grade) This will create an array of student grades. Each grade will be a random number from min_grade to max_grade, inclusive. Methods 1) toString() prints the grades in this format: grades: [78, 58, 76, 101, 59, 55, 84, 91, 84, 671 2) An accessor and a mutator for a grade 3) An equals method 4) A clone method 5) A method that sorts the grades in ascending order 6) A method that sorts the grades in descending order 7) A method that returns the highest grades 8) A method that returns the average grade to one decimal place. 9) A method that returns the median grade 10 ) A method that returns the modes 11 ) A method that returns an Array containing the number of F’s D’S C’s B’s and A’s [7, 2, 1, 0, 0] 12 ) A method that returns an Array containing each student’s letter grade [F, F, D, E, F, C, E, F, D, F) 13 ) The standard deviation of the grades to one decimal place 14 ) A method that sets a grade, given the index of the grade to be changede
Expert Answer
Answer to Assignment 12 Chapter 8 Create a “Grades” class with the following API Constructor Grades (int student Count, int min_gr… . . .
OR

