Java Interview Questions


Q:

Can we create constructor for an abstract class?

 
A: Yes , we can create Constructor for abstaract class. The constructor will be invoked while instantiating its subclass object. The constructor can be explicitly by using super keyword.
.

Java Interview Questions