Difference between Abstract and Interface

S.No.AbstractInterface
1 abstract classes can have propertiesIt can not have properties
2All methods is public or protectedMethods are implicitly public, no access modifiers supported
3Abstract class contains ConstructorsInterface does not contain Constructors
4Use extends keywordUse implements keyword