Solved

Create a Class Named Employee with a Name and a Salary

Question 53

Essay

Create a class named Employee with a name and a salary . Make a class named Manager that inherits from Employee with an instance field named department . Supply a toString() method that prints the manager's name, department, and salary. Make another class named Director that inherits from Manager with an instance field named stipendAmount . Supply the toString() method for Director that prints all of its instance variables. Also, write a program named myOutput that instantiates an object of each of the classes and invokes the toString() method of each of the objects.

Correct Answer:

verifed

Verified

class Employee
{
    private String na...

View Answer

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions