Explanation:
The United States created the Environmental Protection Agency. in some ways they have did that
Answer:
Option A is correct
Explanation:
It would help in building the right architecture and configuration that would decrease those operations times by a large magnitude like uploading or updating large number of records.
Answer:
#include <iostream>
#include <vector>
using namespace std;
void calGPA();
vector<int> g;
vector<int> h;
int main(){
char pushMore = 'y';
int fg, fh;
for (;;){
if (pushMore == 'n'){
break;
} else{
cout<< "Enter integer for grade: ";
cin>> fg;
cout<< "Enter integer for credit hours: ";
cin>> fh;
g.push_back(fg);
h.push_back(fh);
cout<< "Do you want to add more grade and credit hours? y/n: ";
cin>> pushMore;
}
}
calGPA();
}
void calGPA(){
double total = 0, GPA;
for (int i = 0; i < g.size(); ++i) {
total += g.at(i) * h.at(i) ;
}
cout<< "The GPA is : "<< total/g.size();
}
Explanation:
The C++ source code above defines two vectors 'g' and 'h'. The latter holds the grades of a student while the former holds the credit hours for the subject taken. The void 'calGPA' function calculates and prints the student's GPA.
Answer:
1) We can get various types of information, knowledge.
2) We can communicate with each other no matter where they are if they have internet connection.
3) It can be used as a source of entertainment.
4) Through internet, we can work from home especially in this quarantine time.
5) Through internet, we can show our talent and skills.
Hope it helps :)
If you liked it, please mark this answer as the brainliest one.
Answer:
Option (a)
Explanation:
It is true that managers takes some interviews and some tests which include questions which are able to identify the capabilities of the employee. Their field of expertise can be known by these tests which helps in which project they should put under where their skills will bloom and they can be more efficient. It helps manager to know if the employee is the best fit for their company or not.