Answer:
Answered below
Step-by-step explanation:
//TODO1
myAnimal.setName(animalName);
myAnimal.setAge(animalAge);
myAnimal.printInfo();
//TODO2
myCat.setName(catName);
myCat.setAge(catAge);
myCat.setBreed(catBreed);
myCat.printInfo();
//TODO
//Call the getter method of the cat class and //save the returned string in a variable to print //it out.
String breed = myCat.getBreed();
System.out.print(breed);