An abstract class can be instantiated.

Options
- True
- False


CORRECT ANSWER : False

Discussion Board
C++-Abstract Class

The answer is false. Abstract class cannot be instantiated, but pointers and references of Abstract class type can be created. It is used for Upcasting, so that its derived classes can use its interfaces. It is used to provide an interface for its subclasses. Abstract class contains at least one Pure Virtual Function in it. Classes inheriting an Abstract Class must provide definition to the pure virtual function, otherwise they will also become abstract class.

Prajakta Pandit 01-23-2017 12:56 AM

cpp

thank u so much....

mekala 08-10-2015 06:44 AM

cpp

Thank you

vijay 08-2-2015 01:01 PM

cpp

Thank you

NPB 08-3-2014 07:48 AM

Write your comments


Enter the code shown above:

(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)


Advertisement