THE ANSWER IS B Beaycs i like BExplanation:
Answer:
A centrifugal pump is a rotating machine that pumps liquid by forcing it through a paddle wheel or propeller called an impeller. It is a most common type of industrial pump. By the effect of the rotation of the impeller, the pumped fluid is drawn axially into the pump, then accelerated radially, and finally discharged tangentially.
Explanation:
Suppliers generally offer charts in the plan, which present the various things at the nominal operating point using two main arrangements: the inductors and the balancing pants.
Answer:
k = 0.1118 per min
Explanation:
Assume;
Initial number of bacteria = N0
Number of bacteria IN 'T' time = Nt
So,
![Nt=N0e^{-kt}\\\\in\ 6.2 min\\\\\\frac{N0}{2}= N0e^{-k(6.2)}\\\\ln\frac{1}{2} = -k[6.2]](https://tex.z-dn.net/?f=Nt%3DN0e%5E%7B-kt%7D%5C%5C%5C%5Cin%5C%206.2%20min%5C%5C%5C%5C%5C%5Cfrac%7BN0%7D%7B2%7D%3D%20N0e%5E%7B-k%286.2%29%7D%5C%5C%5C%5Cln%5Cfrac%7B1%7D%7B2%7D%20%3D%20-k%5B6.2%5D)
k = 0.1118 per min
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:
This might reduce outage probability because multiple base stations are able to receive a given mobile signal at a time which lead to signal outage decrease or weakness.