Examlex

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.


Definitions:

Related Questions