In which header file is the NULL macro defined?@stdio.h@stddef.h@stdio.h and stddef.h@stdlib.h@C@
How many bytes are occupied by near, far and huge pointers (DOS)?@near=2 far=4 huge=4@near=4 far=8 huge=8@near=2 far=4 huge=8@near=4 far=4 huge=8@A@
What would be the equivalent pointer expression for referring the array element a[i][j][k][l]@(((a+i)+j)+k)+l)@*(*(*(*(a+i)+j)+k)+l)@(((a+i)+j)+k+l)@((a+i)+j+k+l)@A@
The operator used to get value at address stored in a pointer variable is@*@&@&&@||@A@
What are the different types of real data type in C ?@float, double@ short int, double, long int@float, double, long double@double, long int, float@B@		
Which of the following range is a valid long double ?@	3.4E-4932 to 1.1E+4932@	3.4E-4932 to 3.4E+4932@	1.1E-4932 to 1.1E+4932@	1.7E-4932 to 1.7E+4932@A@
We want to round off x, a float, to an int value,The correct way to do is@y = (int)(x + 0.5)@y = int(x + 0.5)@y = (int)x + 0.5@y = (int)((int)x + 0.5)@A@
The binary equivalent of 5.375 is@101.101110111@101.011@101011@None of above@B@
What will you do to treat the constant 3.14 as a float?@use float(3.14f)@use 3.14f@use f(3.14)@use (f)(3.14)@B@
Which of the following statement obtains the remainder on dividing 5.5 by 1.3 @rem = (5.5 % 1.3)@rem = modf(5.5, 1.3)@rem = fmod(5.5, 1.3)@Error: we can't divide@C@
How many bytes are occupied by near, far and huge pointers (DOS)?@near=2 far=4 huge=4@near=4 far=8 huge=8@near=2 far=4 huge=8@near=4 far=4 huge=8@A@
Which of the foolowing gives the value stored at the address pointed to by the pointer a?@a;@val(a);@*a;@&a;@D@
Which of the following gives the memory address of integer variable a;?@*a;@a;@&a;@address(a);@C@
Which of the following is the proper declaration of a pointer?@int x;@int &x;@ptr x;@int *x;@D@
C++ uses ____ as the address operator@asterisk (*)@dot (.)@ampersand (&)@the hash (#)@C@
If a variable int i = 7 is declared and is stored at memory location 70001 then the value of &i is ____@7@70001@0@none of the above@B@
 A pointer refers to __@location of the object in the program on disk@location of the object in memory@value of CPU registers@none of the above@A@
Which of the following is the proper declaration of a pointer?@int x;@int &x;@ptr x;@int *x;@D@
Which of the following gives the memory address of integer variable a?@*a;@a;@ &a;@address(a);@C@
Which of the following gives the memory address of a pointer a?@a;@*a;@&a;@address(a);@A@
Which of the following gives the value stored at the address pointed to by the pointer a?@ a;@val(a);@*a;@&a;@C@
#define MAX_NUM 15,Referring to the sample above, what is MAX_NUM?@MAX_NUM is an integer variable.@MAX_NUM is a linker constant.@MAX_NUM is a precompiler constant@MAX_NUM is a preprocessor macro@D@
