The difference between abstract class and interface is :
A.
Abstract classes can implement multiple inheritance, but interfaces can’t
B.
Abstract classes cannot be inherited, but interfaces can
C.
Non-abstract methods can be allowed in an abstract class, but only abstract methods can be allowed in an interface
D.
Interface is just another name for an abstract class