Contents

What is size of generic pointer in c?
a) 0                        
b) 1                        
c) 2                        
d) null

c

A void pointer cannot point to which of these?
a) methods in C++              
b) class member
c) both a & b                       
d) none of these

b

Referencing a value through a pointer is called…
a) direct calling    
b) indirection
c) pointer referencing         
d) all of these

b

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

c

Which operator returns the address of unallocated blocks in memory?
a) delete operator               
b) empty operator
c) new operator  
d) all of these

c

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

b