calculate the pay for the following day of a weekly time card given a wage of $13/hour.\n\ntime card\n|…

calculate the pay for the following day of a weekly time card given a wage of $13/hour.\n\ntime card\n| |morning|afternoon|\n|----|----|----|\n|in|out|in|out|\n|08:15|12:30|13:15|17:15|\n\npay = $?\n\nround to the nearest cent if necessary.
Answer
Explanation:
Step1: Calculate morning hours
12:30 - 08:15 = 4h15m = 4.25h
Step2: Calculate afternoon hours
17:15 - 13:15 = 4h
Step3: Total hours worked
4.25 + 4 = 8.25h
Step4: Calculate total pay
13 * 8.25 = 107.25
Answer:
107.25