What is difference between abstract classes and interfaces?
The difference b/w abstract and interfaces are s follows:-
1. The Abstract classes can have concrete methods while interfaces have no methods implemented.
2. The Interfaces do not come in inheriting chain, while abstract classes come with inheritance.