I have a very basic question about abstract class in java.
As we know that we can't create an instance of an abstract class, then how JVM handles the instantiation of abstract class in java .
we can define a parameterized constrcutor in the abstract class and we can define another which extends the abstract class. In this situation who creates the instance of abstract class and invokes the constructor of the abstract class.
I want to understand, How JVM manages the object creation of abstract classes.