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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!