Answer:
4
Explanation:
Mechanical advantage = effort arm / load arm
MA = 80 cm / 20 cm
MA = 4
Answer:
c is the answer because we have to double the number
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:
Unlike a low voltage battery such as 12V, high voltage from a High Voltage battery should not be grounded to the chassis for several numbers of reason which are;
- HV up to 350V have a corresponding high current which generate unwanted magnetic field and causes magnetic interference. This can be reduced by using a twisted conductor so that the interference can be cancelled.
-HV can result to surges which result to spark over and flash over between phase and ground.