โ Back to Classes
Question 196
Employee Salary Inheritance
Employee Salary Inheritance
Create aManagerclass that extends the providedEmployeeclass. Requirements: 1.Managerhas an additionaldouble bonusfield. 2. The constructor takesname,salary, andbonus. 3. OverridegetPay()to returnsalary + bonus(the parent'sgetPay()returns justsalary). Do NOT write a main method.
Expected Output:
5000.0 7000.0
Topics:
InheritanceClasses
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.