Inheritance
Inheritance lets you derive classes from other classes. The child classes have all the properties of their parents, but possibly with some modifications and additions
A child class usually represents a more specific idea, or accomplishes a more specific task, than its parent(s)
Parents express (implement) ideas common to all children -- saves work!