Abstract class

class that is declared using “abstract” keyword;  may or may not include abstract methods ( has no body)and concrete methods (methods with body) ; we can  not allowed to create object of Abstract class, An abstract class has no use until unless it is extended by some other class ,logic...