If there is a pointer p to objects of a base class, and it contains the address of an object of a derived class, and both classes contain a nonvirtual member function, ding(), then the statement p->ding(); will cause the version of ding() in the _____ class to be executed.
Which of the following causes run time binding?
Which of the following is the best approach if it is required to have more than one functions having exactly same functionality and implemented on different data types?
A copy constructor is invoked when
Like template functions, a class template may not handle all the types successfully.
A class template may inherit from another class template.
By default the vector data items are initialized to ____
In Private -------------- only member functions and friend classes or functions of a derived class can convert pointer or reference of derived object to that of parent object
Which of the following is/are advantage[s] of generic programming?
Template functions use _________ than ordinary functions.
Non Template Friend functions of a class are friends of ________instance/s of that class.