The answer is B . have a good day
<u>Solution and Explanation:</u>
Volume of gas stream = 1000 cfm (Cubic Feet per Minute)
Particulate loading = 400 gr/ft3 (Grain/cubic feet)
1 gr/ft3 = 0.00220462 lb/ft3
Total weight of particulate matter = 
Cyclone is to 80 % efficient
So particulate remaining = 
emissions from this stack be limited to = 10.0 lb/hr
Particles to be remaining after wet scrubber = 10.0 lb/hr
So particles to be removed = 685.7136- 10 = 675.7136
Efficiency = output multiply with 100/input = 98.542 %
Answer:
Both of them are wrong
Explanation:
The two technicians have given the wrong information about the wires.
This is because firstly, a higher rating of AWG means it is smaller in diameter. Thus, the diameter of a 18 AWG wire is smaller than that of a 12 AWG wire and that makes the assertion of the technician wrong.
Also, the higher the resistance, the smaller the cross sectional area meaning the smaller the diameter. A wire with bigger cross sectional area will have a smaller resistance
So this practically makes the second technician wrong too
Answer:
The main difference between the bs2 and bs3 engine is to present in the catalytic converter. And in bs2 engines the catalytic converter is does not used for the formation of hc and co. In bs3 engine there is no harmful emissions in the hc and co
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