Answer:
SIR IT IS D HOPE THIS HELPS (☞゚ヮ゚)☞☜(゚ヮ゚☜)
Explanation:
Answer:
Explanation:
The "Move Over law" varies by state, but generally requires you vacate the adjacent lane (the one you're currently traveling in), or slow down. Some states have specific speed requirements; others require only "safe and prudent" speed.
The sort of parked vehicles that require you to "move over" also vary by state. It would be "safe and prudent" to move over for <em>any</em> vehicle parked on the shoulder, especially if there are people or animals around those vehicles.
Answer:
(d) 2 pF
Explanation: the charge on capacitor is given by the expression
Q=CV
where Q=charge
C=capacitance
V=voltage across the plate of the capacitor
here we have given Q=500 pF, V=250 volt
using this formula C=
=500×
×
=2×
=2 pF
def calculate_pay(total_worked_hours, rate_per_hour):
if total_hours_worked > 40:
# anything over 40 hours earns the overtime rate
overtimeRate = 2 * rate
_per_hour
return (40 * rate_per_hour) + ((total_worked_hours - 40) * overtimeRate
else:
# if you didn't work over 40 hours, there is no overtime
overtime = 0
return total_worked_hours * rate_per_hour
Explanation:
- First we create the calculate_pay function which will takes 2 parameters.
- Secondly ,inside the function we check if the total_worked_hours is greater than 40 and then return the pay by calculating with the help of formula for work over 40 hours.
- If the total work hour is less than 40 then we return the pay by multiplying the total_worked_hours with rate_per_hour.