Advisory Board interview question

What's the difference between abstract class vs an interface?

Interview Answer

Anonymous

30 Aug 2018

Abstract class can have actual code defined and you can only extend one abstract class. Interface can have no actual functionality, just access points and you can implement as many as you like.