Question: Need in Java Write a program using inheritance that will allow a user to enter in information for various types of people at a university.
Need in Java
Write a program using inheritance that will allow a user to enter in information for various types of people at a university. The program should allow the user to enter information about Faculty Members, Staff Members, Students, Advisors, and an Other type to catch all others. After the user has entered in all of their records, print them out in a legible way.
The hierarchy of the classes should be as follows, or at least similar.
Person (name, address, email, etc)Employee
Faculty (courses taught, department, etc)
Staff (department, title, etc)
Advisor (department, position outside of university, etc)
Student
Undergraduate Student (class year, gpa, etc)
Graduate Student (same as undergrad)
Other (role at university, position outside of university, etc)
Be sure to use inheritance so variables arent declared in subclasses if they are not necessary.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
