Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

JAVA please: This lab has four parts: 1. Write a Person class. 2. Write a Student and Employee subclass to Person. 3. Write a Faculty

JAVA please:

This lab has four parts:

1. Write a Person class. 2. Write a Student and Employee subclass to Person. 3. Write a Faculty and Staff subclass to Employee. 4. Write a program that creates an object of all of the above classes.

Task 1 The Person Class First, let us make a simple class titled Person. A person should include: 1. The class variables/attributes/properties: a. Name, b. Address, c. Phone number, d. And email address. 2. An overloaded constructor that allows us to pass in all of the above variables. 3. A ToString method that returns all of the class variables AND the name of the class (which should be Person).

Task 2 The Student and Employee Subclasses Now let us begin to use inheritance. Both the Student and Employee classes will inherit from the Person class. A Student should include: 1. One additional class variable, class status (freshman, sophomore, junior, or senior). Define the status as a constant. a. NOTE: The Student class will inherit and keep all the class variables from Person, so we are adding (without any additional code) one class variable to store their class status. 2. An overwritten constructor that takes in one additional parameter which will be used to set the class status. 3. An overwritten ToString method that will print out the class status along with the other variables AND class name (this time it should be Student). An Employee should include: 1. Additional class variables/attributes/properties: a. An office (building name/letter and number, e.g. Atrium 352 or J 352), b. Salary, c. The year, d. The month, e. And the day the Employee was hired. 2. An overwritten constructor that takes five (5) additional variables to set the Employees variables. 3. An overwritten ToString method that will print out the five (5) additional variables along with the previous variables AND class name (this time it should be Employee).

Task 3 The Faculty and Staff Subclasses We will create two more classes this time they will both inherit from Employee. A Faculty member should include: 1. Additional attributes: a. Office hours in a week (e.g. 5), b. And a rank (e.g. Senior, Limited Term, etc.). 2. An overwritten constructor that takes two (2) additional variables to set the Facultys variables. 3. An overwritten ToString method that will print out the two (2) additional variables along with the previous variables AND class name (this time it should be Faculty). A Staff member should include: 1. One additional property that represents their title. 2. An overwritten constructor that takes in one additional parameter which will be used to set the title. 3. An overwritten ToString method that will print out the class status along with the other variables AND class name (this time it should be Staff).

Task 4 The Driver (Main Program) Let us now use our classes by creating objects. Create one (1) of each of the above classes (1 Person, 1 Student, 1 Employee, 1 Faculty, and 1 Staff object) using user input. Finally, print out the data stored in each object using their ToString methods (DO NOT explicitly call the ToString method when doing so). Below is some possible sample output (note: simply means, there exists):

Some Sample Output:

Person: Rey Skywalker Address: 4123 Moisture Farm, Outer Rim, Tatooine Phone Number: 444-444-4444 Email Address: ReyOfHope@students.kennesaw.edu

Student: Ben Solo Address: 78 Jedi Temple, Outer Rim Phone Number: 444-444-5673 Email Address: BSolo@students.kennesaw.edu Class Status: Freshman

Employee: Han Solo Address: Captains Quarters, Millennium Falcon Phone Number: 456-123-7892 Email Address: HSolo@students.kennesaw.edu Office: Cockpit of Millennium Falcon Pilots Chair Salary: 10000000 Date Hired: Year: 1975 | Month: 12 | Day: 5

Faculty: Luke Skywalker Address: 789 Hermits Retreat, Ahch-To Phone Number: 456-123-7891 Email Address: LSkywalk@students.kennesaw.edu Office: Penthouse room in Temple Salary: 5000000 Date Hired: Year: 1975 | Month: 12 | Day: 5 Office hours: 5 hours

Rank: Senior Staff: Leia Organa-Solo Address: 789 Resistance base, Outer Rim, DQar Phone Number: 456-123-7890 Email Address: LOrgana@students.kennesaw.edu Office: Resistance Camp Salary: 5500000 Date Hired: Year: 1975 | Month: 12 | Day: 5 Title: General

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Concepts

Authors: David M. Kroenke, David J. Auer

7th edition

133544621, 133544626, 0-13-354462-1, 978-0133544626

More Books

Students also viewed these Databases questions

Question

b. Will there be one assigned leader?

Answered: 1 week ago

Question

Do you currently have a team agreement?

Answered: 1 week ago