![]() Related Questions Int z;int x = 5;int y = -10;int a = 4;int b = 2;z = x++ - --y * b /a;What number will z in the sample code above containsA. 5B. 6C. 10D. 11 F = fopen( filename, "r" );if(????){fprintf(stderr, "Could not open file!");exit(-1);}What should replace the ???? in the code above to determine if the file could not be opened?A. f == NULLB. f == EOFC. f != 0;D. f == -1 Int x[] = { 1, 4, 8, 5, 1, 4 };int *ptr, y;ptr = x + 4;y = ptr - x;What does y in the sample code above equal?A. -3B. 0C. 4D. 4 + sizeof( int ) #include What is the output of the following code?char str[20] = "ENIGMA";char *p, *q, *r;q=p++;r=p+3 - (p-q);printf("%3s%5s", (++p)+3, r);A. ENIGMAB. GMAC. No outputD. Error. #include The limit for the number of parameters for a pl/sql procedure isA. 256B. No Limit at allC. Depends on the type of parameters passed to the procedureD. Depends on Positional Parameters passed. A certain number of men can finish a piece of work in 10 days. If however there were 10 men less it will take 10 days more for the work to be finished. How many men were there originally?A. 110 menB. 130 menC. 100 menD. none of these What is the use of a make fileA. Do detect memory leakageB. To optimize the codeC. To link and compile source code to exeD. To disassemble the exe to source code To produce a meaningful result set without any cartesian products, what is the minimum number of conditions that should appear in the WHERE clause of a four-table join?A. 8B. 3C. 4D. 5
Sponsored Links
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||