Answer:
7.15
Explanation:
Firstly, the COP of such heat pump must be measured that is,

Therefore, the temperature relationship, 
Then, we should apply the values in the COP.


The number of heat rejected by the heat pump must then be calculated.


We must then calculate the refrigerant mass flow rate.



The
value is 145.27 and therefore the hot reservoir temperature is 64° C.
The pressure at 64 ° C is thus 1849.36 kPa by interpolation.
And, the lowest reservoir temperature must be calculated.



the lowest reservoir temperature = 258.703 kpa
So, the pressure ratio should be = 7.15
Answer:
C.
structural safety
Explanation:
Guards protecting floor surfaces must be 36 inches in height, while guards for stairs must be 34 inches in height measured vertically from the tread nosing. A guard may also serve as the required handrail (34 to 38 inches high) provided the top rail meets the requirements for grip size.
Answer:
E= 15 GPa.
Explanation:
Given that
Length ,L = 0.5 m
Tensile stress ,σ = 10.2 MPa
Elongation ,ΔL = 0.34 mm
lets take young modulus = E
We know that strain ε given as



We know that

Therefore the young's modulus will be 15 GPa.
Answer:
Explanation along with code and output results is provided below.
C++ Code:
#include <iostream>
using namespace std;
int main()
{
int year;
cout<<"Enter the car model year."<<endl;
cin>>year;
if (year<=1969)
{
cout<<"Few safety features."<<endl;
}
else if (year>=1970 && year<1989)
{
cout<<"Probably has seat belts."<<endl;
}
else if (year>=1990 && year<1999)
{
cout<<"Probably has antilock brakes."<<endl;
}
else if (year>=2000)
{
cout<<"Probably has airbags."<<endl;
}
return 0;
}
Explanation:
The problem was to print feature messages of a car given its model year.
If else conditions are being used incorporate the logic. The code has been tested with several inputs and got correct output results.
Output:
Enter the car model year.
1961
Few safety features.
Enter the car model year.
1975
Probably has seat belts.
Enter the car model year.
1994
Probably has antilock brakes.
Enter the car model year.
2005
Probably has airbags.