Answer:
B) m<1 + m<2 < m<2 + m<3 + m<4
Answer:
A. By hit and trial method 280 C
Explanation:
ion know B sorry
Answer:
Explanation:
Find the temperature at exit of compressor

Find the work done by the compressor

Find the actual workdone by the compressor

Find the temperature at exit of the turbine

Find the actual workdone by the turbine

Find the temperature of the regeneration

Find the heat supplied

Find the thermal efficiency

60.4%
Find the mass flow rate

Find the actual workdone by the compressor

Find the actual workdone by the turbine

Find the temperature of the compressor exit

Find the temperature at the turbine exit

Find the temperature of regeneration

Answer:
#include <iostream>
using namespace std;
int main()
{
int inputNumber ;
cout << "Enter an interstate highway number:";
cin >> inputNumber ;
if(inputNumber<=0 || inputNumber >= 1000)
cout << inputNumber << " is not a valid interstate highway number" << endl ;
else{
if(inputNumber > 99){
cout << "I-"<<inputNumber<< " is auxiliary, ";
int temp = inputNumber % 100 ;
cout <<"serving I-"<<temp<<", ";
if(temp%2==0){
cout << "going east/west." << endl;
}
else{
cout << "going north/south." << endl;
}
}
else{
cout << "I-"<<inputNumber<< " is primary, ";
if(inputNumber%2==0){
cout << "going east/west." << endl;
}
else{
cout << "going north/south." << endl;
}
}
}
return 0;
}
Explanation:
- Check if input number is greater than 99, then display that the input number is auxiliary.
-
Check if remainder of input number/2 is equal to 0, then display that going east/west.