An abstract class is one in which methods are defined but an object of this class cannot be instanstiated.this type of a class can only be derived but cannot be instantiated.
Abstract Class is a class that have no objects .IT may contain Abstract methods and methods that have body.It is used by inheriting the class(Base Class).