Answer:
B. Computer Repair
Explanation:
I got it right on edge. trust.
The answer is cyclin subunit
Answer:
Option B is Correct.
Explanation:
Thermal paste is used in the CPU motherboard to reduce the heat.
Thermal paste is a heat observing coating that is used to make the system cool when it is heated much by working for a long time.
Thermal paste is also used in heat sink in CPU and CPU passes the air in the heat sink to make the temperature normal.
Thermal paste is very useful which installing any processor otherwise which running, the temperature will be increased in the absence of the thermal paste.
It is used to maintain the empty place between the motherboard and the processor.
Explanation:
#include <iostream.h>
#inlcude<conion.h>
void main()
{
int count, x;
clrscr();
cout<<"Enter the count:";
cin>> count;
cout<<"Ready!\n";
for(x=count;x>0;x--)
{
cout<<x<<"\n";
}
cout<<"Start";
getche();
}
This is a simple program where the output is expected to be in reverse order. So we run a for loop starting from the count and decrements the counter by 1 every time when the loop runs and print the value. So to print the output in "new line" we include "\n".