How do you make derived class as an abstract class?
Answer / karthick s
We can make the derived class as an abstract,by inheriting
the class(base) which containing one pure virtual function.
After inheriting, we can't override it in derived class.
Then the derived class becomes abstract...
| Is This Answer Correct ? | 22 Yes | 4 No |
What is the concept of object oriented program?
function overridind means and simple program
What are two types of polymorphism?
What is a null tree?
swapping program does not use third variable
what is object slicing
design a c++ class for the chess board,provide a c++ class definition for such class(only class definition is required)
why constructor cannt be declar virtually? why destructor cannt be overloaded?
when my application exe is running nad i don't want to create another exe what should i do
Why can't we have instance(stack) of a class as a member of the same class like eg.Class A{A obj;} as we can have self refential pointer
Why a "operator=(...)" when there is a copy ctor?
What are the three parts of a simple empty class?