Answer: B Excretory
Explanation: Hope this helps :)
Answer:
i think its A. increasing research to find alternative natural resources for the future
<u>Answer:</u>
<u>of 150 pounds per square inch</u>
Explanation:
Note that the unit for measuring water pressure is called <u> pounds per square inch (psi)</u>
In the case of sprinklers and standpipe systems, a pressure <u>of 150 pounds per square inch</u> was used initially.
Answer:
Percentage change 5.75 %.
Explanation:Given ;
Given
Pressure of condenser =0.0738 bar
Surface temperature=20°C
Now from steam table
Properties of steam at 0.0738 bar
Saturation temperature corresponding to saturation pressure =40°C
So Δh=2573.5-167.5=2406 KJ/kg
Enthalpy of condensation=2406 KJ/kg
So total heat=Sensible heat of liquid+Enthalpy of condensation

Total heat =4.2(40-20)+2406
Total heat=2,544 KJ/kg
Now film coefficient before inclusion of sensible heat



Now film coefficient after inclusion of sensible heat



=5.75 %
So Percentage change 5.75 %.
Answer:
The code is given below in Python with appropriate comments
Explanation:
# convert list to set
male_names = set(['Oliver','Declan','Henry'])
# get remove and add name from user
remove_name = input("Enter remove name: ")
add_name = input("Enter add name: ")
# remove name from set
male_names.remove(remove_name)
# add new name ij set
male_names.add(add_name)
# sort the set
a = sorted(male_names)
# print the set
print(a)