Homework 8
1.
Dogclass [Savitch, Chapter 7, Problem 7, p. 509] (10 points)Create a new class called
Dogthat is derived from thePetRecordclass given in Display 5.19/page 351. The new class has the additional attributes ofbreed(typeString) andboosterShot(typeboolean,trueif the pet has had its booster shots,falseotherwise). Be sure your classes have a reasonable complement of constructors and accessor methods. Write a program that reads in five pets of typeDogfrom the user and prints out the name and breed of all the dogs that are over two years old and have not had their booster shots.