Answer:
The control unit and arithmetic logic unit are part of which hardware component IS CPU
CPU IS THE ANSWER
Explanation:
Because they will change their identity and therefore they will never have the same name for a long period of time . So when they commit a crime , they will be difficult to find and catch
Answer:
<em><u>where is whole question</u></em>
<em><u>where is whole questionExplanation:</u></em>
<em><u>where is whole questionExplanation:.....,.............</u></em>
Answer:
#include <iostream>
using namespace std;
int main()
{
cout<< rand() % 50 + 100 <<endl;
cout<<rand() % 50 + 100 <<endl;
return 0;
}
Explanation:
The rand() gives you a random number. If you use rand() % 50, it will give you a random number between 0 and 49. Since we are required to have the numbers between 100 and 149, add 100 to this expression. This way, you will have a random number between 100 and 149. Type this expression two times and use "endl" to end with a new line.