UnderGradStudent.java 268 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 package org.university.core; public class UnderGradStudent extends Student { public UnderGradStudent(String firstName, String lastName, String ID, int joiningYear, Department department) { super(firstName, lastName, ID, joiningYear, department); } }