Question: Implement the corresponding class; include only the attributes and methods shown and ensure the methods do only what is specified. hoursWorked : int payRate :
Implement the corresponding class; include only the attributes and methods shown and ensure the methods do only what is specified.
hoursWorked : int
payRate : double
+ AddHours(hoursToAdd : int) : void
Adds the given hours to add to the hoursWorked
+ SetPayRate(newPayRate : double) : void
Changes the payrate to the new pay rate.
+ GetHoursWorked(void) : int {hoursWorked}
Gives back the hoursWorked
+ GetPayRate(void) : double {payRate}
ives back the payRate
+ GetGrossPay(void) : double {grossPay}
Calculates and returns the gross pay
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
