What is size of generic pointer in c?
a) 0
b) 1
c) 2
d) null
A void pointer cannot point to which of these?
a) methods in C++
b) class member
c) both a & b
d) none of these
Referencing a value through a
pointer is called…
a) direct calling
b) indirection
c) pointer referencing
d) all of these
The pointer can point to any variable that is not declared with which of these?
a) const
b) volatile
c) both a & b
d) static
Which operator returns the address of unallocated blocks in memory?
a) delete operator
b) empty operator
c) new operator
d) all of these
A qualifier that enables the programmers to inform the compiler that the value of a particular variable should not be modified?
a) ptr
b) const
c) stsrt
d) none of these