The three components is a specialized video card, large and fast hard drives and specialized audio card.
Answer:
b
Explanation:
a cpu is made from silicon chip
Answer:
a
Explanation:
The variable declared in the for is accessible only within the for loop and it goes out of scope once the loop get end
eg : for(int i=1;i<=10,i++) // variable i is declared
{
// variable i is visible only in this block,
}
//After this the variable i goes out of scope
You could do it like this (example for n=5).
int n = 5;
int total = 0;
for (int k = 1; k <= n; k++) total += k*k*k;