Answer:
The availability of system will be 0.9
Explanation:
We have given mean time of failure = 900 hours
Mean time [to repair = 100 hour
We have to find availability of system
Availability of system is given by 
So availability of system 
So the availability of system will be 0.9
AnswerWhat Are the Classifications of Burns? Burns are classified as first-, second-, or third-degree, depending on how deep and severe they penetrate the skin's surface. First-degree burns affect only the epidermis, or outer layer of skin. The burn site is red, painful, dry, and with no blisters.
Explanation:
Answer:
Geothermal energy.
Explanation:
Geothermal energy is called a renewable energy source because the water is replenished by rainfall, and the heat is continuously produced by the earth.
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.