Contents

What does pointer mean?
a) keyword used to create variables               
b) variable that store address
c) variable that address of another variable
d) all of these

c

Which of the following operator is not used in with pointers?
a) ->       
b) &                       
c) *                        
d) >>

c

Which of the following is an address operator?
a) *                        
b) &                       
c) &&    
d) !
 

b

The dereference operator is denoted by…
a) *                        
b) &                       
c) &&    
d) !

a

The process of access data in variables using * operator with pointer variable is called……
a) dereferencing operator                              
b) referencing operator
c) accessing the pointer     
d) none of these

a

Which of the following indicate the address of variable temp of type float?
a) *temp                                               
b) &temp
c) &float temp                    
d) float temp

b