CJCoding With Joseph
15per day

Employee Salary Inheritance

Create a Manager class that extends the provided Employee class.

Requirements:
1. Manager has an additional double bonus field.
2. The constructor takes name, salary, and bonus.
3. Override getPay() to return salary + bonus (the parent's getPay() returns just salary).

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.