Answer:
1) 4.361 x 10 raised to power 8 revolutions
2) 1.744 x 10 raised to power 9 firings
3) 2.18 x 10 raised to power 8 intake strokes
Explanation:
The step by step explanation is as shown in the attachment
Answer:
<em>Python code is as follows:
</em>
********************************************************************************
#function to get number up to any number of decimal places
def toFixed(value, digits):
return "%.*f" % (digits, value)
print("Enter the price: ", end='', flush=True) #prompt for the input of price
price = float(input()) #taken input
totalCost = price + 0.05 * price #calculating cost
print("Total Cost after the sales tax of 5% is applied: " + toFixed(totalCost,2)) #print and output totalCost
************************************************************************************