ABSTRACT CLASS IN JAVA
.you cannot create object of the abstract class(cannot be instantiated)
.you can create reference of the abstract class
.extended class should define all its abstract method but if it cannot define all
the abs method then just also make it an abs class but problem will be no obj can
be created in the main class so in that case do an extended class of this class
which will be basically called concrete class.
.an abstract class can have both abstract and non abstract method
.an abstract method can only be inside an abstract class