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
<span>I'm 100% sure that correct answer should look like this: The USB standart port allows 127 different devices to connect to a computer via a single usb port on the computer’s system unit.</span>
Answer:
Click at the pic above and the ans will appear.
Hope it helps :)
I think its D, double-headed if I remember right. If this is brainiest can you mark it, please! I am trying to rank up. Thanks, hun!
answer:
(i) #include <iostream>
using namespace std;
int main() {
int n1,n2,max;
cin>>n1>>n2;
if(n1>n2)//finding maximum between n1 and n2 in the program directly.
max=n1;
else
max=n2;
cout<<max;
return 0;
}
(ii)
#include <iostream>
using namespace std;
int maximum(int n1 ,int n2)
{
if(n1>n2)//finding maximum between n1 and n2 using function.
return n1;
else
return n2;
}
int main() {
int n1,n2,max;
cin>>n1>>n2;
max=maximum(n1,n2);
cout<<max;
return 0;
}
(iii)
#include <iostream>
using namespace std;
inline int maximum(int n1 ,int n2)
{
return (n1>n2)? n1:n2;
}
int main() {
int n1,n2,max;
cin>>n1>>n2;
max=maximum(n1,n2);//Finding maximum using inline function.
cout<<max;
return 0;
}
Output:-
54 78
78
all three codes give the same output.
Explanation:
In part (i) I have done the operation in the main function directly.
In part(ii) I have used function to calculate the maximum.
In part(iii) I have used inline function to calculate maximum.