Inheritance is a very useful feature of classes. With it, we can reuse things when classes aren't that different.

Handy! The Car class, which is the derived class in this case, inherits everything from Vehicle, its base class.

Psst: we can also override things by redefining them in the derived class using the keyword override.