Q.1.
Which language among the following doesn’t allow pointers?
Q.2.
Which is correct syntax for declaring pointer to object?
Q.3.
Which operator should be used to access the members of the class using object pointer?
Q.4.
How does compiler decide the intended object to be used, if more than one object are used?
Q.5.
If pointer to an object is declared __________
Q.6.
What is the size of an object pointer?
Q.7.
A pointer _________________
Q.8.
Pointer to a base class can be initialized with the address of derived class, because of _________
Q.9.
Can pointers to object access the private members of the class?
Q.10.
Is name of an array of objects is also a pointer to object?
Q.11.
Which among the following is true?
Q.12.
Which is the correct syntax to call a member function using pointer?
Q.13.
If a pointer to an object is created and the object gets deleted without using the pointer then __________
Q.14.
How can the address stored in the pointer be retrieved?
Q.15.
What should be done to prevent changes that may be made to the values pointed by the pointer?
Q.16.
References to object are same as pointers of object.