TD Interview Question

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

Interview Answer

Anonymous

Jun 20, 2011

Abstract class methods can have implementation, interface methods cannot. Abstract classes can have member variables.

1