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
#include void func(){int x = 0;static int y = 0;+; y++;printf( "%d -- %dn", x, y );}int main(){func();func();return 0;}printf("%dn", 64>>3);What will the sample code above produce when executed?A. 8B. 16C. 32D. 256
#include void inc_count(int count){count ++;}int main(){int count = 0; /* number of times through */while (count < 10)inc_count(count);return count ;}What will be the value returned by the function main?A. 0B. 10C. 9D. Null
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.
Latest Answer : The choice A is the correct answer. ...
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
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
In this PL/SQL statement, which of the following lines will produce an error?A. cursor CAPITALS is select CITY, STATEB. into my_city, my_stateC. from CITIESD. where CAPITAL = 'Y';
In a PL/SQL block, a variable is declared as NUMBER without an initial value. What will its value be when it is used in the executable section of the PL/SQL block?A. NULLB. 0C. results in a compilation errorD. An exception will be raised
A can have a piece of work done in 8 days, B can work three times faster than the A, C can work five times faster than A. How many days will they take to do the work together?A. 3 daysB. 8/9 daysC. 4 daysD. can't say