Question: JAVA Goal: Learn how to extend classes. Assignment: Develop a public subclass named Dog that extends an existing class called Animal. The Animal class models
JAVA
Goal: Learn how to extend classes.
Assignment: Develop a public subclass named Dog that extends an existing class called Animal. The Animal class models an animal with basic attributes such as name String and age int with corresponding public getters and setters.
In the Dog subclass:
include a constructor DogString name, int age Assume the Animal class has a constructor AnimalString name, int age;
introduce a new public method named bark that returns the String "Woof!".
write your code below
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
