Answer:d
Explanation:
Given
Temperature
Also
R=287 J/kg
Flow will be In-compressible when Mach no.<0.32
Mach no.
(a)
Mach no.
Mach no.=0.63
(b)
Mach no.
Mach no.=0.31
(c)
Mach no.
Mach no.=1.27
(d)
Mach no.
Mach no.=0.127
From above results it is clear that for Flow at velocity 200 km/h ,it will be incompressible.
Answer:
fluid power
Explanation:
fluids commonly used in fluid power are Oil, Water, Air, CO², and Nitrogen gas, fluid power is commonly confused with hydraulic power, which only uses liquids, fluid power uses either liquids or gases
Answer:
Define Variables and Use List methods to do the following
Explanation:
#<em>Conjoins two lists together</em>
all_names = male_names.union(female_names)
#<em>Finds the names that appear in both lists, just returns those</em>
neutral_names = male_names.intersection(female_names)
#<em>Returns names that are NOT in both lists</em>
specific_names = male_names.symmetric_difference(female_names)