Abstract classes are classes that contain one or more abstract method. an abstract method is a method that is declared but contains no information.
Abstract class can have abstract methods or it can have implemented methods it gives generalize definition for the class.
So we can inherit abstract class and provide the implementation to that methods as per the requirments