In a book, it says
the class Name has the property of last name and first name.
Address inherits from Name, and has additional property of street number, street name, city, state, zipcode.
That seems different from the other cases, where
Cat inherits from Animal, and Cat "is-a" Animal.
Is this "is-a" relationship required or mandatory for good object design? Should Address inherit from Name?
Update: since some users asked for the source:

