Answer:
C
Explanation:
If you asses the risks you can prepare for the worst
Answer:
diesel engine
Explanation:
because diesel is stronger than petrol
Answer:

Explanation:
generally regeneration of cycle is used in the case of gas turbine. due to regeneration efficiency of turbine is increased but there is no effect on the on the net work out put of turbine.Actually in regeneration net heta input is decreases that is why total efficiency increase.
Now from T-S diagram



Due to generation
amount of energy has been saved.

So efficiency of cycle 

Effectiveness of re-generator

So the efficiency of regenerative cycle

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)