Question: JAVA HW (NO ARRAYS) Write a program which takes the grades from ten quizzes and computes the average quiz score. However, the teacher usually drops
JAVA HW (NO ARRAYS)
Write a program which takes the grades from ten quizzes and computes the average quiz score. However, the teacher usually drops the lowest two scores. You must take this into consideration when computing the average quiz grade. Your program must implement the following methods: readQuizScore: This method asks and reads one quiz score from the console, validates the score, and then returns the score. This method will be called once for each score. computeAverage: This method takes the ten scores as input, computes the average, and returns the average. getLowestScore: This method takes the ten scores as input and returns the lowest score of the tens cores. getSecondLowestScore: This method takes the ten scores as input, and returns the second lowest score of the ten scores. Display the two lowest scores, and the correct average. Input Validation Each score must be a positive value between 0.0 and 100.0 Requirements: All four of the required methods must be implemented, and all must be correctly used within your program to get credit. Round the solution to two decimal places. You are only allowed to ask the user to enter the 10 scores once. You will need to figure out how to pass the scores to your methods in order to find the solution. Sample Execution
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
