can we create a object of Base class?..
If we can not create a object of base class then why we need Abstract class?
Yes, we can create an object of the Base class.
If we make a class as abstract then we can’t create an object of that class.
we can create only pointer of that class this is because to provide one interface to access and so that runtime time polymorphism can implement.