What is wrong with the program?double d;scanf("%f", &d);A. Instead of %f , %lf should be used for formattingB. Instead of %f , %d should be used for formattingC. Instead of %f , %D should be used for formattingD. Instead of %f , %n should be used for formatting
What function will read a specified number of elements from a file?A. readfile()B. fread()C. fileread()D. getline()
#include void func(){int x = 0;static int y = 0;x++; y++;printf( "%d -- %dn", x, y );}int main(){func();func();return 0;}What will the code above print when it is executed?A. 1-- 1 1 - 1B. 1 -- 1 1 -- 2C. 1 -- 1 2 -- 1D. 1 -- 0 1 -- 0
What is the output of the following loop?for(I=0, j=I++; j>I; j++, I++){printf("%d%d", I, j);}A. 0,1B. 0,0C. Infinite loopD. No output
Consider the following structurestruct{int data;struct node *prev;struct node *next;}node;NULL ß 5 à 8 à 10 à NULLß ßp q rWhat will be the value of r à prev à next à data?A. 10B. 8C. 5D. NULL
What is the output?void main(){int a,b=5,c=10;a = (b-c) > (c-b) ? b : c;printf("%d",a);}A. 10B. 5C. 0D. Error
Which section of a PL/SQL block would most likely contain a RAISE statement?A. HeaderB. DeclarativeC. ExecutableD. Exception
Select the VALID trigger type(s)?A. AFTER statement triggerB. INSERT row triggerC. DELETE row triggerD. All of the above
Which section of a PL/SQL block would most likely contain a RETURN statement?A. HeaderB. DeclarativeC. ExecutableD. Exception
Latest Answer: C. String ...
View page << Previous 4 5 6 7 [8] 9 10 11 12 13 Next >>

Go Top