Abstract class is a class that can not be instantiated and having zero or more abstract method.It must be subclassed by other class implementing the abstract method.
The abstract class is modified by keyword \'abstract\'.
Interface can be think of as fully abstract class.All the method within the interface are abstract must end with a semicolon followed by parantheses.
If a class implement an Interface,it must provide the definition to all the methods of the interface or it must be the abstract class.
Abstract class is a class that can not be instantiated and having zero or more abstract method.It must be subclassed by other class implementing the abstract method.
The abstract class is modified by keyword \'abstract\'.
Interface can be think of as fully abstract class.All the method within the interface are abstract must end with a semicolon followed by parantheses.
If a class implement an Interface,it must provide the definition to all the methods of the interface or it must be the abstract class.