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.
Answer:

Explanation:
speed of motor (N)=1500 rpm
power=4 hp =
=2.9828 KW
service factor(k)= 2.75
now,


torque rating

Answer:
In engineering design, failure is expected. It helps you find the best solutions before implementing them in the “real world”. Having a prototype fail is a GOOD thing, because that means you have learned something new about the problem and potential solutions.
Explanation:
Leading/trailing shoe type drum brake This is called the servo effect (self-boosting effect) which realizes the powerful braking forces of drum brakes. ... This is because drum brakes generate the same braking force in either direction. Generally, this type is used for the rear brakes of passenger cars.