ASP Programming Question:

Whats the difference between an interface and abstract class?

Tweet Share WhatsApp

Answer:

In the interface all methods must be abstract, in the abstract class some methods can be concrete. In the interface no accessibility modifiers are allowed, which is ok in abstract classes.

Download ASP Programming PDF Read All 194 ASP Programming Questions
Previous QuestionNext Question
And if they have conflicting method names?How can you overload a method?