1. Why can a constructor in Java not be final, static or abstract?
Ø
Instance variables and methods are members of a class, but not
Constructor. Constructors are property of a class.
Constructor cannot be overridden/inherited. It means like constructors cannot
be call with objects like emp.details();
Ø ...