Answer:
Low ambient temperature
Explanation:
Hope this helps. If it did, please mark as brianliest so other people see it. Thanks! - Kai
Answer:
A) energy loss E = pgQtH
Where p = density in kg/m3
g = gravity acceleration in m/s2
Q = flow rate in m3/s
t = time taken for flow in sec
H = height of flow in m
B) power required to run pump;
P = pgQH
Explanation:
Detailed explanation and calculation is shown in the image below
Answer:
# Program is written in Python Programming Language
# Comments are used for explanatory purpose
# Program starts here
# Accept input
Steps = input (Number of Steps: ")
# Calculate distance
distance = float(2000) * float(steps)
#Print Formatted Result
print('%0.2f' % distance)
# End of Program
.--------
The above program converts number of steps to miles.
At line 5, the number of steps is inputted and stored in variable named Steps.
At line 6, the number of miles is calculated by multiplying 2000 by the content of variable Steps
The result is printed at line 8