Answer: For #1 I'm going to go with A because that has to do with biology
For #2 I'm going to go with B oceans because that has to do with plant life (and life in general).
For #3 I'll say marine/maritime engineer (you can just say marine)
Hope it helps!
A binary geothermal power operates on the simple Rankine cycle with isobutane as the working fluid. The isentropic efficiency of the turbine, the net power output, and the thermal efficiency of the cycle are to be determined
Assumptions :
1. Steady operating conditions exist.
2. Kinetic and potential energy changes are negligible.
Properties: The specific heat of geothermal water (
[) is taken to be 4.18 kJ/kg.ºC.
Analysis (a) We need properties of isobutane, we can obtain the properties from EES.
a. Turbine
P
=
b. Pump


c. 
Answer:
E = 2940 J
Explanation:
It is given that,
Mass, m = 12 kg
Position at which the object is placed, h = 25 m
We need to find the potential energy of the mass. It is given by the formula as follows :
E = mgh
g is acceleration due to gravity

So, the potential energy of the mass is 2940 J.
Answer:
I forget the word for it, but probably the guys who set up the power lines in the city.
Explanation:
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)