Day 15-Abstract classes vs Interface

  • Abstract class can have implementation for some of its member but interface can't have implementation for any of its member
  • Abstract class can have field while Interface cannot have field
  • Abstract class can have access modifiers while interface can not have access modifiers