Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

1 Overview The big picture of this assignment is to have three parallel arrays that provide information about a list of students. These arrays contain

1 Overview The big picture of this assignment is to have three parallel arrays that provide information about a list of students. These arrays contain their names, their GPAs, and their student IDs. All the data is provided in a single tab-separated file with each line formatted as follows: namegpastudent id Your submitted assignment should be able to read such a file and fill the three arrays with the appropriate data, print out all the data, and filter out students whose GPA is below a certain user-provided threshold. The outline of the code is already given to you. Your task is to write additional code that conforms to this outline. You must add your own code wherever indicated. Three (incomplete) classes and one small sample input data file are provided: Main InputDataHandler input.txt Keep in mind that you are not allowed to modify the given code (including .java file names). Your homework submission will be tested assuming that the given code structure is unchanged, so any unwarranted change may lead to test cases failing to run properly. 2 Tasks 2.1 The main class The main class that runs the whole code is Main.java. This class is responsible for reading the input file, creating the object that maintains the three arrays, and then uses this object to print information and filter students based on GPA. The path to the input file must be provided as the value of the constant INPUT FILE PATH first. The code for Main.java is incomplete, and your first task is complete it. After reading the data from the input file, the program asks the user to provide a GPA value as a cutoff for enrollment. Completing this is a part of your assignment. This is VERY important, because without this, the next part of the program cannot be tested! The incomplete Main.java is shown next. 1 Main.java import java.io.File; import java.io.IOException; import java.net.URISyntaxException; import java.net.URL; public class Main { private static final String INPUT_FILE_PATH = "/path/to/input/file"; public static void main(String[] args) throws URISyntaxException, IOException, InputFileFormatException { File inFile = new File(INPUT_FILE_PATH); InputDataHandler handler = new InputDataHandler(inFile); handler.printAllDetails(); System.out.print("Enter the GPA cutoff for the course: "); // TODO: add your code to read user input handler.filter(cutoff); handler.printAllDetails(); } } Task Goals The cutoff GPA provided by the user should be deemed invalid if it is lower than 1.0 or higher than 4.0. It should, of course, be deemed invalid if it anything other than a double. If the user enters an invalid cutoff GPA value, your code should print a meaningful error message and ask for the user input again. 2.2 Processing input data and the InputDataHandler class This is where all the data handling and processing happens. Your job here is to write the constructor for this class, the printAllDetails() method, the deleteStudent(int) method, and a Java documentation in the same style as shown in the provided code to explain what could go wrong in the filter(double) method (i.e., why it may fail to remove students whose GPA is below the cutoff provided by the user). All three tasks must adhere to the documentation provided in the code. InputDataHandler.java import java.io.BufferedReader; import java.io.File; import java.io.FileReader; import java.io.IOException; class InputDataHandler { private String[] nameArray; private Double[] gpaArray; private Integer[] idArray; // TODO: write Javadoc explaining why this approach of filtering may fail void filter(double cutoff) { for (int i = 0; i < gpaArray.length; i++) { if (gpaArray[i] < cutoff) deleteStudent(i); } } /** * The only constructor for this class. It takes an input file as its argument, * and populates the three arrays such that the nth lines data is stored in * the (n-1)th index of all three arrays. It throws an IOException * if the inputFile is not a file (e.g., its a directory, symbolic link, * etc.). It also throws an InputFileFormatException if the input file * contains lines that are not properly formatted or if it contains a line with * an invalid value for the GPA. * * @param inputFile the input file with 3 columns of tab-separated data in each line. * @throws IOException if there is any problem reading the input file. * @throws InputFileFormatException if there is any formatting problem in the * input file. */ InputDataHandler(File inputFile) throws IOException, InputFileFormatException { // TODO: add your code } /** * Prints out the details of all the students in this class. * This must be in the following format: * * Name : name of student * GPA : GPA of student * Student ID: ID of student * There must also be a one-line gap between two students. */ void printAllDetails() { // TODO: add your code } /** * This method removes all the information about a student whose information * is stored at the specified index (in all three arrays). It also ensures * that after the removal, all three arrays in the InputDataHandler * class have their size reduced by one, and subsequent student information * is shifted to the left by one. * * @param index the specified index where data is removed. private void deleteStudent(int index) { // TODO: add your code } } 2.3 Writing your own exception The InputFileFormatException class is something you will have to write yourself. It must be a direct subclass of java.lang.Exception, and have a constructor that allows an error message to be taken as its argument. 5 Additional Information and Notes Can I change the given code? You may not modify any code provided, and that includes visibility, signature, and method names. You may add your own methods to what is already given. As long as the final output adheres to the documentation given to you, there are no restrictions in these methods. Can I use array deletion methods already given in Java or in some other library? NO. You must write your own code for everything in this assignment. If you have a doubt about whether or not some readily available method can be used, ask on Piazza so that a TA can respond to such questions.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

The Manga Guide To Databases

Authors: Mana Takahashi, Shoko Azuma, Co Ltd Trend

1st Edition

1593271905, 978-1593271909

More Books

Students also viewed these Databases questions

Question

Explain methods of metal extraction with examples.

Answered: 1 week ago