Find the wrong statement/s about Abstract Class.
We can create objects of the abstract class.
_______________ is a member function that is declared within a base class and redefined by derived class.
Syntax for Pure Virtual Function is ______________ .
Run time polymorphism can be achieved with______ .
We can create objects of the abstract class.
The dereferencing operator ………….. is used to access a member when we use pointers to both the object and the member.
In compile time polymorphism, compiler is able to select the appropriate function for a particular call at the compile time itself, which is known as …………
……………. binding means that, an object is bound to its function call at compile time.
C++ supports run time polymorphism with the help of virtual functions, which is called …………….. binding.
State whether the following statements about pointers in C++ are True.
i) A pointer can be incremented (++) or decremented (–)
ii) Any integer can be added to or subtracted from a pointer
iii) One pointer can be subtracted from another
………………. are also known as generic pointers, which refer to variables of any type.
The pointers which are not initialized in a program are called ……………..
…………………… is useful in creating objects at run time.
A …………………. refers to an object that that currently invokes a member function.
The …………………. cannot be directly used to access all the members of the derived class.
Run time polymorphism is achieved only when a ……………….. is accessed through a pointer to the base class.
If a ……………………… is defined in the base class, it need not be necessarily redefined in the derived class.