Neither of the two technicians (Technician A and Technician B) is correct.
<h3>What is an
engine vacuum?</h3>
An engine vacuum can be defined as a type of engine which is designed and developed to derive its force from air pressure that's being pushed against one side of the piston of an automobile, while having a partial vacuum on the other side.
In this scenario, we can infer and logically conclude that neither of the two technicians (Technician A and Technician B) is correct because engine vacuum is high when the engine is operating under light loads and vice-versa.
Read more on engine vacuum here: brainly.com/question/14602340
#SPJ12
Answer:
#include <iostream>
#include <iomanip>
#include <string>
using namespace std;
int main() {
string name[5];
int age[5];
int i,j;
for ( i = 0; i<=4; i++ ) {
cout << "Please enter student's name:";
cin >> name[i];
cout << "Please enter student's age:";
cin >> age[i];
}
for (i=0;i<=4;i++){
cout<<"Age of "<< name[i]<<" is "<<age[i]<<endl;
}
}
Output of above program is displayed in figure attached.