Answer:
a)-True
Hope this helps even tho theres no school right now
Answer:
Chemical Engineer,Geological Engineer,Aerospace Engineer
Explanation:
Answer:
work done = 48.88 ×
J
Explanation:
given data
mass = 100 kN
velocity = 310 m/s
time = 30 min = 1800 s
drag force = 12 kN
descends = 2200 m
to find out
work done by the shuttle engine
solution
we know that work done here is
work done = accelerating work - drag work - descending work
put here all value
work done = ( mass ×velocity ×time - force ×velocity ×time - mass ×descends ) 10³ J
work done = ( 100 × 310 × 1800 - 12×310 ×1800 - 100 × 2200 ) 10³ J
work done = 48.88 ×
J
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
A. I believe, lmk if I’m right