Page 1 of 1

Question 1 a) b) c) d) Exercises Write a class Employee with a name and salary. Make a class Manager inherit from Employ

Posted: Tue Jul 05, 2022 10:26 am
by answerhappygod
Question 1 A B C D Exercises Write A Class Employee With A Name And Salary Make A Class Manager Inherit From Employ 1
Question 1 A B C D Exercises Write A Class Employee With A Name And Salary Make A Class Manager Inherit From Employ 1 (32.71 KiB) Viewed 11 times
Question 1 a) b) c) d) Exercises Write a class Employee with a name and salary. Make a class Manager inherit from Employee. Add an instance variable, named department, of type String. Supply a method toString that prints the manager's name, department, and salary. Make a class Executive inherit from Manager. Supply a method toString that prints the string "Executive", followed by the information stored in the Manager superclass object. Supply a test program that tests these classes and methods.