MULTIPLE CHOICE QUESTIONS AND ANSWERS
- Ability to take many forms is called ________.
- none of these
- polymorphism
- encapsulation
- member function
- inheritance
Answer: (b)
- The run time system performs __________ on virtual functions.
- none of these
- additional error checking
- dynamic binding
- static binding
- no special services
Answer: (b)
- A _____________ pointer can point to ____________ object.
- derived class, base class
- void, derived class
- void, NULL
- base class, derived class
- none of the above
Answer: (d)
- A virtual function is a member function that expects to be _________ in a derived class.
- private
- none of these
- overridden
- ignored
- called frequently
Answer: (c)
- For proper display of polymorphism, a method in the base class must be declared _______. ...