CSE MCQ
local variables
internal variables
external variable
global variables
input facility
output facility
both input and output facilities
no input and output facilities
strings and sets
lists and arrays
characters, integers, and floating point numbers
all of these
int
float
char
long int
047
0 x 0 f
0 x f3
0 x 27
it results in a syntax error
it is meaningless
compiler will give a new name for the field
none of these
during execution, value of i may change but not its address
during execution both the address and value may change
repeated execution may result in different addresses for i
i may not have an associated address
263
ASCII equivalent of 263
rings the bell
garbage
results in the printing of a negative integer
always prints a positive integer
prints a value that is implementation dependent
which have a short duration in a program
which have short names
which may require less storage than normal integers
unsigned character
unsigned integer
character
none of' these
is globally accessible by all functions
has a declaration
will be initialized to 0 if not initialized
&street and street will have different values
&street is meaningless
&street+1 and street+1 will have the same values
None of the above
file lives even after the program that created it terminates
memory space will not be wasted
there are many system tools to manipulate files
All of the abone
Array stores data of the same type
Array can be a part of a structure
Array of structure is allowed
All of the above
&x[ i ] is same as x + i - 1
*(x + 1) is same as *(&x [ i ])
*(x + i) is same as x[ i ]
both (b) & (c)
storage needed will be proportional to the size of the data
execution will be faster
swapping process becomes easier and faster
sixth row
Fifth row
fifth column
sixth column
two-dimensional array of characters
one-dimensional array of strings
one-dimensional array of pointers to character
All of above