<h3>ANSWER:The main reason why laptops are more expensive than desktops is in the development costs to create hardware that is compact enough and at the same time meeting an expected level of performance.</h3>
<h3>And it’s not just performance that is a big challenge. It is also keeping the system cool enough that stability is maintained under most common usage conditions</h3>
Ground wire and i believe it is yellow and green
Answer:
A) database
Explanation:
A database is used by people to help keep track on things
Answer: For loop
Explanation:
Using the for loop we can get the exact number of values/outcomes we require.
For example: printf(enter 20 numbers");
for(int i=0; i<20;i++)
{
scanf("%d", &number);
}
So, this is an implementation of for loop in C. Using it we can enter exact 20 numbers not less or more than that.
Therefore, for loop is the answer.