Multivision interview question

What is the difference between abstract class and interface

Interview Answer

Anonymous

20 Aug 2015

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

1