I think the answer is B. 10D
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.
Answer:
a) 4.1 kw
b) 4.68 tons
c) 4.02
Explanation:
Saturated vapor enters compressor at ( p1 ) = 2.6 bar
Saturated liquid exits the condenser at ( p2 ) = 12 bar
Isentropic compressor efficiency = 80%
Mass flow rate = 7 kg/min
A) Determine compressor power in KW
compressor power = m ( h2 - h1 )
= 7 / 60 ( 283.71 - 248.545 )
= 4.1 kw
B) Determine refrigeration capacity in tons = m ( h1 - h4 )
= 7/60 ( 248.545 - 107.34 )
= 16.47 kw = 4.68 tons
C) coefficient of performance ( COP )
= Refrigeration capacity / compressor power
= 16.47 / 4.1 = 4.02
Attached below is the beginning part of the solution
Answer:
1. Manpower Management
2. Productive Meetings
3.Establish administrative policies, procedures, and standards.
4. High command over assets management.
5. Specific field related knowledge of procurement.
6. Compliance and EHS knowledge.
Explanation: