Question: Use the module format introduced in textbook chapter 5 to answer this question. Write a module that computes the weekly salary earned by an hourly
Use the module format introduced in textbook chapter 5 to answer this question. Write a module that computes the weekly salary earned by an hourly employee. The module has two formal parameters. The first parameter is named "hoursWorked" and denotes the number of hours that an employee has worked during a one-week pay period. The second parameter is named "hourlyRate" and denotes the number of dollars the employee makes for every hour of nonovertime work. The hourly rate for overtime work, anytime exceeding 40 hours in one week, is 50% above the normal hourly rate. As examples, consider using this module as shown below: a. weekly Salary(10,9) should computer the answer 90 since the employee worked 10 nonovertime hours at $9 per hour. b. weeklySalary(50, 10) should produce 550 since the employee worked 40nonovertime hours at $10 per hour and 10 overtime hours at $15 per hour
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
