PPT Slide
Syntax notes re: interface methods:
- They must be public (cannot be private or protected).
- They must be instance methods (cannot be static).
- They are abstract by default (no need to explicitly declare them to be abstract).
- No variables may be inherited from interfaces.