Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

At college student grade information for a specific class is recorded in a text

ID: 3641151 • Letter: A

Question

At college student grade information for a specific class is recorded in a text file. The file is then read into an information system and processed. A Student’s information is stored per line and consists of their:
1. Studentid
2. First Name
3. Last Name
4. Course Work Mark
5. Final Exam Mark
You are required to read in each student’s information from the file where the last student ID is 0000. Once the data is stored the student’s letter grade is computed. Both course work and final exam marks are in percentage value. The program should them print the class list of student names and grades. A class has no more than 30 students.

Output:
047558502 Random Guy 25 25
047584747 Susan Summers 49 12
058780514 John Doe 40 40
0000

Explanation / Answer

You didnt give an example of the input file so I made a guess. ////////////////////////// Driver.java //////////////////////////////////// /* * * Main entrance for program */ import java.util.ArrayList; import java.util.List; import java.io.*; public class Driver { private static List studentList; // create a new array list of type student public static void main(String[] args) { studentList = ParseTextFile("C:\users\v-mattkn\desktop\temp.txt"); // Read/Ingest the text file for(int i = 0; i
Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote