void main()
{
for(int i=0;i<5;i++);
printf("%d",i);
}
What is the output?..
Answer
Is This Answer Correct ? | 6 Yes | 15 No |
Question { 27968 }
Given an int variable n that has been initialized to a
positive value and, in addition, int variables k and
total that have already been declared, use a do...while
loop to compute the sum of the cubes of the first n whole
numbers, and store this value in total . Thus if n equals
4, your code should put 1*1*1 + 2*2*2 + 3*3*3 + 4*4*4 into
total . Use no variables other than n , k , and total .
Answer
Is This Answer Correct ? | 3 Yes | 10 No |
Question { 24719 }
Is it possible to update a primary key value? If not, what
is the error code given? If yes, can more than 1 primary
key column be updated at a time?
Answer
Is This Answer Correct ? | 17 Yes | 22 No |
Question { 15145 }
main()
{
char c;
for(c='A';c<='Z';c++)
getch();
}
Answer
Is This Answer Correct ? | 3 Yes | 1 No |