Question: * do not use an Array or Arraylist * 8 2 0 John 5 0 6 5 7 8 9 0 3 0 Timmy 4

*do not use an Array or Arraylist*
8
20 John 50657890
30 Timmy 48657883
50 Riss 60666474
60 Cameron 99989799
80 Noah 89878395
90 Brittany 70778599
Create the Student class as follows:
class Student {
int id;
String name;
int[] testScores;
Student(int id, String name, int[] scores){
this.id = id;
this.name = name;
testScores = scores;
}
Write a class called StudentTest that reads the data from input.txt when "input.txt" is entered in command line:
Student Data:
Student Data assorted by ID:
Highest Average of students (name should be shown):
Highest and lowest score with student names:
Students average assorted from highest to lowest with scores
 *do not use an Array or Arraylist* 8 20 John 50657890

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!