Answer:
b)false
Explanation:
Rolling is a process in which work piece passes through rolls to produce desired out put of the work piece.Rolling is a metal forming process.
We know that friction force is responsible for motion of work piece between rolls.If friction force is so small at the entrance side then work piece will not enter in the forming zone and forming process will not occurs.So the friction force should be high at the entrance side and low at the exit side.
So given statement is wrong.
Answer:
a) Ql=33120000 kJ
b) COP = 5.6
c) COPreversible= 29.3
Explanation:
a) of the attached figure we have:
HP is heat pump, W is the work supplied, Th is the higher temperature, Tl is the low temperature, Ql is heat supplied and Qh is the heat rejected. The worj is:
W=Qh-Ql
Ql=Qh-W
where W=2000 kWh
Qh=120000 kJ/h

b) The coefficient of performance is:

c) The coefficient of performance of a reversible heat pump is:

Th=20+273=293 K
Tl=10+273=283K
Replacing:

Answer:
See explaination
Explanation:
Lets first consider the term Isentropic efficiency. The isentropic efficiency of a compressor or pump is defined as the ratio of the work input to an isentropic process, to the work input to the actual process between the same inlet and exit pressures. IN practice, compressors are intentionally cooled to minimize the work input.
Please kindly check attachment for the step by step solution of the given problem.
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.