Multivision Interview Question

What is the difference between abstract class and interface

Interview Answer

Anonymous

Aug 20, 2015

abstract class allows you to have both concrete methods as well as abstract method and interface allows you to have multiple inheritance

1