Properties of Subclasses
Subclasses cannot access any of the superclass’s private data/functions
Subclasses can access any of the superclass’s public data/functions
Subclasses can access any of the superclass’s protected data/functions (protected is a third type of access that we glossed over previously)