Answer:
I'm completely sure that the answer is: The most important rating for batteries is the ampere-hour rating. Ampere-hour is the battery discharge rating. It's used as a measure of charge in your device. It indicates how long your device will work without charging.
Explanation:
Hope this helped!
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.
The watts that are consumed is 80 watts.
<h3>What power factor?</h3>
The term power factor has to do with the measure of the efficiency of the use of energy. Recall that power is defined as the rate of doing work. The magnitude of the power factor shows the extent to which the power is used.
Now, to obtain the watts are consumed in a circuit having a power factor of 0. 2 if the input is 100 vac at 4 amperes we have; V × I × PF = 100V × 4A × 0.2 = 80 watts.
Learn more about power factor:brainly.com/question/10634193
#SPJ4