Question: This program is designed to compute statistics on a list of exam scores readfrom a text file in response to a console prompt. The console

This program is designed to compute statistics on a list of exam scores readfrom a text file in response to a console prompt. The console program welcomes the user and asks for the name of the text file to input. The textfile contains the number of scores followed by the list of scores. Theprogram then computes and displays the following information to the console:

The number of scores, The minimum, maximum, and average scores, The number of A's, B's, C's, D's, and F's; using a 90-80-70-60 scale The median of thescores.

Use at least one function/method, and use an array to store the list of exam scores.

import java.util.Scanner;

import java.io.IOException;

import java.io.FileReader;

import java.io.BufferedReader;

import java.util.Arrays;

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!