Question
1. Create a Java project in NetBeans and name the project Hw03. 2. Design the Person class and its subclasses as follows: Design a class
1. Create a Java project in NetBeans and name the project Hw03.
2. Design the Person class and its subclasses as follows:
Design a class named Person and its two subclasses named Student and Employee.
Make Faculty and Staff subclasses of Employee. A person has a name, address, phone number (String), and email address. A student has a class status (freshman, sophomore, junior or senior). Define the values of the status as integer constants:
freshman = 1
sophomore = 2
junior = 3,
senior = 4. An employee has an office, salary (int), and date hired (Date). A faculty member has office hours (String) and a rank (int). A staff has a title. Override the toString() method in each class to display class name, the persons name and status for a student.
Write a test program that creates a Person, Student, Employee, Faculty and Staff, and invokes
their toString() methods.
Sample Run:
Person: Peter Student: Susan (Sophomore)
Employee: Eva Faculty: Frank Staff: Shane
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started