Use java
1. The program will keep asking the user if more students are to be created. If the user says no, the program enters search mode. If the user says yes, the program will ask if an undergraduate student or a graduate student is created. Depending on the answer, the program will ask information about the student and create the student. 2. The program prompts the user to input details of each student including name, id, and gpa. For undergraduate students, the program also asks if the student is a transfer student. For graduate students, the program asks the college the student graduated from. 3. In the search mode, the program keeps asking the user for a student ID. If the student ID is 0, the program will print "Goodbye!" and exit. Otherwise, the program will search for the student ID. If a match is found, the program will call printStudent() to print the student information. If no match is found, the program prints "Student ID xxxx not found. For undergraduate students, the program prints their name, id, gpa, and if the student is a transfer student. For graduate students, the program prints their name, id, gpa, and the college they graduated from The program must implement a main class and three student classes (Student, UndergradStudent, GradStudent) which are specified in the following UML class diagram. Student -name: String -id: int -gpa: float +Student +Student(String, int, float) +pringStudent:void +getIDO:int UndegradStudent Grad Student -boolean: is Transfer -college:String +UndergradStudent(String, int, float, boolean) +GradStudent(String, int, float, String) +pring Student():void +pringStudent():void You must create an ArrayList of Students in the main class: import java.util. ArrayList; ArrayList
students = new ArrayList(); The ArrayList variable will store all Student objects created, both undergraduate students and graduate students. The Student class must have a constructor that takes a name, an id, and a gpa, to create a Student object. The Undergrad Student class must have a constructor that takes a name, an id, a gpa, and a transfer status to create an UndergradStudent object. The constructor must call the Student's constructor using super. The GradStudent class must have a constructor that takes a name, an id, a gpa, and a college to create an GradStudent object. The constructor must call the Student's constructor using super. The Student class must have a public method printStudent() that prints the student's name, id, and gpa. The UndergradStudent class must override the printStudent() method. It must print the student's name, id, gpa, and transfer status. It must call the Student's printStudent) to print student's name, id, and gpa. The GradStudent class must override the printStudent() method. It must print the student's name, id, gpa, and college. It must call the Student's printStudent() to print student's name, id, and gpa. The printing of students must use dynamic binding: students.get(i).printStudent(); You can assume that user inputs are in correct format. You will earn bonus points for handling some incorrect inputs. The Scanner's nextInt() method does NOT read the newline character. You need call a nextLine() after nextInt() to discard the newline character. 1. The program will ignore incorrect inputs such as ye, m, ok, etc, instead of Y or N, when asked if more students are entered. The program simply ignores them and prompt again. For example: Do you have more student to enter (Y for yes, N for no): ok Do you have more student to enter (Y for yes, N for no): Y 2. The program will ignore incorrect inputs such as ug, gr, under, etc, instead of U or G when asked if an undergraduate or a graduate student is entered. The program simply ignores them and prompt again. For example: Do you have more student to enter (Y for yes, N for no): Y Undergraduate or Graduate? (U for undergraduate, G for graduate): master Undergraduate or Graduate? (U for undergraduate, G for graduate): G A sample run will look like this where the green texts are user inputs: (Ctrl) Do you have more student to enter (Y for yes, N for no): Y Undergraduate or Graduate? (U for undergraduate, G for graduate): U Student name: Dee K Jones Student ID:1000 Student GPA: 3.2 Is student a transfer student? (Y for yes, N for no):Y Do you have more student to enter (Y for yes, N for no): Y Undergraduate or Graduate? (U for undergraduate, G for graduate): U Student name:Pi Si Phi Student ID:2002 Student GPA: 2.1 Is student a transfer student? (Y for yes, N for no):N Do you have more student to enter (Y for yes, N for no): Y Undergraduate or Graduate? (U for undergraduate, G for graduate): G Student name:Kim Jon Woo Student ID:3003 Student GPA:3.8 What college did the student graduate from: Top Secret School Do you have more student to enter (Y for yes, N for no): Y Undergraduate or Graduate? (u for undergraduate, G for graduate): G Student name: Ba Sing Klip Student ID:4001 Student GPA:2.8 What college did the student graduate from:Ohio Cleveland State Do you have more student to enter (Y for yes, N for no): N Enter a student ID (enter o to quit): 2002 Student name:Pi Si Phi Student ID:2002 Student GPA: 2.1 Transder Student: false Enter a student ID (enter o to quit): 3003 Student name:Kim Jon Woo Student ID:3003 Student GPA:3.8 College Graduated: Top Secret School Enter a student ID (enter to quit): 2930 Student ID 2930 not found. Enter a student ID (enter o to quit): 0 Goodbye