It would be a class system. Hope i helped
Answer:
Exothermic
Explanation:Because when an organism produces bioluminescence, they release heat, which means that exothermic would be correct.
Answer: Reducing the financial imbalance rate among the population.
Explanation:
The enormous differences in financial capacity among the population are certainly one of the reasons for the economic crisis in the United States. The greatest success of the New Deal economic reform package in the long term is certainly the establishment of a balance in financial terms among the population, so efforts to eliminate this unfavorable trend that is one of the causes of the crisis have been successfully implemented.
Pollution puts a lot of strain on the Earth in general.
Waist dumps do as well.
Answer:
The pseudocode is as follows:
input name
while name != "STOP"
print name
input name
End while
Explanation:
This gets name from the user
input name
This loop is repeated until the user inputs "STOP".
while name != "STOP"
This prints the name entered by the user
print name
This gets another name input from the user
input name
The loop ends here
End while