Answer:
1) 
2) 
Explanation:
For isothermal process n =1

![V_o = \frac{5}{[\frac{72}{80}]^{1/1} -[\frac{72}{180}]^{1/1}}](https://tex.z-dn.net/?f=V_o%20%20%3D%20%5Cfrac%7B5%7D%7B%5B%5Cfrac%7B72%7D%7B80%7D%5D%5E%7B1%2F1%7D%20-%5B%5Cfrac%7B72%7D%7B180%7D%5D%5E%7B1%2F1%7D%7D)

calculate pressure ratio to determine correction factor

correction factor for calculate dpressure ration for isothermal process is
c1 = 1.03

b) for adiabatic process
n =1.4
volume of hydraulic accumulator is given as
![V_o =\frac{\Delta V}{[\frac{p_o}{p_1}]^{1/n} -[\frac{p_o}{p_2}]^{1/n}}](https://tex.z-dn.net/?f=V_o%20%3D%5Cfrac%7B%5CDelta%20V%7D%7B%5B%5Cfrac%7Bp_o%7D%7Bp_1%7D%5D%5E%7B1%2Fn%7D%20-%5B%5Cfrac%7Bp_o%7D%7Bp_2%7D%5D%5E%7B1%2Fn%7D%7D)
![V_o = \frac{5}{[\frac{72}{80}]^{1/1.4} -[\frac{72}{180}]^{1/1.4}}](https://tex.z-dn.net/?f=V_o%20%20%3D%20%5Cfrac%7B5%7D%7B%5B%5Cfrac%7B72%7D%7B80%7D%5D%5E%7B1%2F1.4%7D%20-%5B%5Cfrac%7B72%7D%7B180%7D%5D%5E%7B1%2F1.4%7D%7D)

calculate pressure ratio to determine correction factor

correction factor for calculate dpressure ration for isothermal process is
c1 = 1.15

Answer:
d. 90%
Explanation:
As we know that internal combustion engine produce lot's of toxic gases to reduce these toxic gases in the environment a device is used and this device is know as current modeling converter.
Generally the efficiency of current model catalytic converter is more than 90%.But the minimum efficiency this converter is 90%.
So option d is correct.
d. 90%
Answer:
It is a non profit organization that dedicates to licensing professional engineers and surveyors
Explanation:
Answer:
The flux (volume of water per unit time) through the hoop will also double.
Explanation:
The flux = volume of water per unit time = flow rate of water through the hoop.
The Flow rate of water through the hoop is proportional to the area of the hoop, and the velocity of the water through the hoop.
This means that
Flow rate = AV
where A is the area of the hoop
V is the velocity of the water through the hoop
This flow rate = volume of water per unit time = Δv/Δt =Q
From all the above statements, we can say
Q = AV
From the equation, if we double the area, and the velocity of the stream of water through the hoop does not change, then, the volume of water per unit time will also double or we can say increases by a factor of 2
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
************************************************************************************