Answer:
45
Explanation:
Initially, myNum is equal to 14 and yourNum is equal to 4
Then, myNum is incremented by 1 and becomes 15
Also, yourNum is decremented by 1 and becomes 3
Finally, myNum is set to myNum x yourNum, 15 x 3 = 45
Answer:
SATA Cable
Explanation:
SATA (Serial Advanced Technology Attachment) Cable is a connection made between Computer hard drives and the motherboard. When a computer gives an error on startup that OS not found, there's a possibility that the drive containing the OS is not well connected to the motherboard. Making sure it is well connected to the motherboard will possibly fix the issue.
Answer:
System software includes all of the following except <u>Browsers</u>.
Explanation:
I just know
Folder, Right? I'm sorry if this is not correct.
Answer:
#include <iostream>
using namespace std;
int main()
{
cout << "N\t10*N\t100*N\t1000*N" << endl;
int x=1;
while(x<=5){
cout << x <<"\t"<< x*10 <<"\t"<<x*100 <<"\t"<< x*1000 << endl;
x++;
}
return 0;
}
Explanation:
Print the header, N 10*N 100*N 1000*N, using \t
Initialize the x as 1. It will be used to control the while loop
Create a while loop that iterates while x is smaller than or equal to 5
Inside the loop, print the required values. After printing, increment the value of x by 1