Given that Jamie worked 50 hours (Hours = 50) last week and earns $10.00 an hour (Rate = 10), how much did Jamie earn last week, before taxes (TotalPay)?
```If (Rate >=10) OR (Hours <=40) Then
TotalPay = Hours * Rate
Else
TotalPay = (Hours * Rate)+(Hours–40)*Rate*1.5
End If
```
a. $ 500
b. $ 650
c. $ 750
d. $ 400
A
Computer Science & Information Technology
You might also like to view...
Data models are unique to Power Pivot.?
Answer the following statement true (T) or false (F)
Computer Science & Information Technology
The code (methods and statements) and data (variables and constants) contained in an encapsulated object are accessed through a(n) ____.
A. black box B. view C. interface D. template
Computer Science & Information Technology