Answer:
Mechanical engineer? Thats my guess I didnt have alot of options sorry if I am wrong
Explanation:
Answer:
Pressure = 11.38 psi
Force = 13.981 Ibf
Explanation:
Step by step solution is in the attached document.
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
Answer:
Racking is the term used for when buildings tilt as their structural components are forced out of plumb. This is most commonly caused by wind forces exerting horizontal pressure, but it can also be caused by seismic stress, thermal expansion or contraction, and so on.
Explanation: