The component that requires a plan to improve performance in resource use and pollutant output is the environmental management system.
<h3>What is a pollutant?</h3>
Pollutant simply means a substance that is harmful to the environment.
In this case, the component that requires a plan to improve performance in resource use and pollutant output is the environmental management system.
Learn more about pollutant on:
brainly.com/question/25537936
#SPJ12
Answer:
You have to log in to your google account. BRAINLIEST PLEASE
Explanation:
Answer:
Following are the statement which is given below:
if (gpa > 3.5) // check the condition if gpa exceeds 3.5.
{
deansList++; // increment of 1 in the deansList variable
cout << studentName; // display the studentName,
}
Explanation:
The description of the statement
- In the if statement we check the condition of "gpa" .if "gpa" is greater then 3.5 then it executed the statement inside the if block otherwise nothing will be executed.
- if control moves to the if part it adds to 1 to the deansList.
- Finally, display the value of studentName.