What does declaring Car extends Vehicle allow the Car class to do?
Car extends Vehicle
Prevent Car from adding behavior not declared in Vehicle.
Make every Vehicle automatically inherit the Car-specific honk() method.
honk()
Reuse accessible Vehicle behavior such as getName(), getSpeed(), accelerate(), and brake().
getName()
getSpeed()
accelerate()
brake()
Read and write Vehicle's private fields directly by their field names.