Given:
Temperature of water,
=
=273 +(-6) =267 K
Temperature surrounding refrigerator,
=
=273 + 21 =294 K
Specific heat given for water,
= 4.19 KJ/kg/K
Specific heat given for ice,
= 2.1 KJ/kg/K
Latent heat of fusion,
= 335KJ/kg
Solution:
Coefficient of Performance (COP) for refrigerator is given by:
Max
= 
=
= 9.89
Coefficient of Performance (COP) for heat pump is given by:
Max
= 
= 10.89
Answer:
Option A
Chemical engineering
Explanation:
Chemical engineering mainly encompass the study of behavior of different particles such as petroleum, water, drugs and other products. When Anne is involved in a study with engineers who study flow of particles, the flow, viscosity and other properties are among the behavior that chemical engineers are involved in.
Answer:
touching
Explanation:
The backrest of the seat should be tilted back ever so slightly, and when turning the steering wheel your shoulders should remain in contact with the seat – rather than hunched forward.
Answer:
F = 0.0022N
Explanation:
Given:
Surface area (A) = 4,000mm² = 0.004m²
Viscosity = µ = 0.55 N.s/m²
u = (5y-0.5y²) mm/s
Assume y = 4
Computation:
F/A = µ(du/dy)
F = µA(du/dy)
F = µA[(d/dy)(5y-0.5y²)]
F = (0.55)(0.004)[(5-1(4))]
F = 0.0022N
Answer:
The following program is in C++.
#include <bits/stdc++.h>
using namespace std;
void lastChars(string s)
{
int l=s.length();
if(l!=0)
{
cout<<"The last character of the string is: "<<s[l-1];
}
}
int main() {
string s;//declaring a string..
getline(cin,s);//taking input of the string..
lastChars(s);//calling the function..
return 0;
}
Input:-
Alex is going home
Output:-
The last character of the string is: e
Explanation:
In the function lastChars() there is one argument that is a string.I have declared a integer variable l that stores the length of the string.If the length of the string is not 0.Then printing the last character of the string.In the main function I have called the function lastChars() with the string s that is prompted from the user.