Answer:
The elevation at the high point of the road is 12186.5 in ft.
Explanation:
The automobile weight is 2500 lbf.
The automobile increases its gravitational potential energy in
. It means the mobile has increased its elevation.
The initial elevation is of 5183 ft.
The first step is to convert Btu of potential energy to adequate units to work with data previously presented.
British Thermal Unit -
Now we have the gravitational potential energy in lbf*ft. Weight of the mobile is in lbf and the elevation is in ft. We can evaluate the expression for gravitational potential energy as follows:
Where m is the mass of the automobile, g is the gravity, W is the weight of the automobile showed in the problem.
is the final elevation and
is the initial elevation.
Replacing W in the Ep equation
Finally, the next step is to replace the variables of the problem.
The elevation at the high point of the road is 12186.5 in ft.
Answer:
In this era, Sun Ra was among the first of any musicians to make extensive and pioneering use of synthesizers and other various electronic keyboards; he was given a prototype Minimoog by its inventor, Robert Moog.
Explanation:
Throughout the Word of God, water is a symbol, a "type," of the spirit of God, and is ... to represent holy spirit, that is, the divine nature and power of God. ... The average person can go about 60 days without food before he ... record illustrating the analogous relationship between water and the holy spirit.
Hazard is a possible source of danger
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.