Question: Please review the Student.java program. Construct 5 students with different names and gpa Store these 5 students in a linked list Search the linked list
Please review the Student.java program.

Construct 5 students with different names and gpa
Store these 5 students in a linked list
Search the linked list and output the student with the highest gpa (just this bullet point needed, thanks)
A Student class with student name and GPA ik public class Student t private double gpa; private String studentName; Constructs a student. ik public Student(double studentGpa, String n) gpastudentGpa; studentName = n; Gets the current GPA of the student @return the GPA public double getGPAC return gpa; public String getName(O return studentName
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
