That would be B, I hope this helps!
Answer:
The amplitude of the absorbed mass can be found
for ka:

now
![w^2=\frac{K_{a} }{m_{a} } \\m_{a} =\frac{K_{a} }{w^2} =\frac{125000}{[6000*2\pi /60]^2} =0.317kg](https://tex.z-dn.net/?f=w%5E2%3D%5Cfrac%7BK_%7Ba%7D%20%7D%7Bm_%7Ba%7D%20%7D%20%5C%5Cm_%7Ba%7D%20%3D%5Cfrac%7BK_%7Ba%7D%20%7D%7Bw%5E2%7D%20%3D%5Cfrac%7B125000%7D%7B%5B6000%2A2%5Cpi%20%2F60%5D%5E2%7D%20%3D0.317kg)
Answer:
A pitot tube is used to measure fluid flow in engineering
Answer:

Explanation:
Our values are,
State 1

We know moreover for the tables A-15 that

State 2

For tables we know at T=320K

We need to use the ideal gas equation to estimate the mass, so



Using now for the final mass:



We only need to apply a energy balance equation:




The negative value indidicates heat ransfer from the system
Answer:
def theRoundTrip(movement):
x=0
y=0
for i in movement:
if i not in ["U","L","D","R"]:
print("bad input")
return
if i=="U":
y+=1
if i=="L":
x-=1
if i=="D":
y-=1
if i=="R":
x+=1
return x==0 and y==0