Question: Using Java, Create a class called Employee. It will have 3 attribute fields. Id as integer, and name as String. It will have setter methods.
Using Java, Create a class called Employee. It will have 3 attribute fields. Id as integer, and name as String. It will have setter methods. It will have a showEmployeeInfoMethod() as a void.
Create a class called HourlyEmployee that extends the Employee class.
It will have int as hours and rate as double. It will have setter methods and a a showEmployeeInfo() as a void that will display the employee name and id along with the employee hours and rate and calculated salary as hours times rate in correct money format
Create 1 object called e1 in a class called EmployeeTester
You will pass any values you want using all setter methods.
You will display the information for the Employee
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
