Difference between abstract class and interface.
Anonym
Abstract is the Single Inheritance - Interface having multiple inheritance, Abstract start with Abstract Keyword - Interface start with Interface keyword, Abstract class inheritance keyword is extends - Interface class inheritance keyword is Implicit. Abstract variable are final,non final, static and non static but interface having final and static variables only.