Indus Valley Partners Interview Question

Difference between abstract class and interface.

Interview Answer

Anonymous

Aug 26, 2019

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.