Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Define a base class Animal with the following attributes and methods: Attributes: name ( String ) Methods: makeSound ( ) : Prints Generic Sound. Now,
Define a base class Animal with the following attributes and methods:
Attributes: name String
Methods: makeSound: Prints Generic Sound.
Now, create two subclasses, Bird and Fish, that inherit from the Animal class.
For each subclass, override the makeSound method to provide a unique sound for each type of animal. Additionally, add specific methods related to the characteristics of each type:
For Bird: Add a method fly: Prints Bird is Flying
For Fish: Add a method swim: Prints Fish is swimming
Define an abstract class EndangeredAnimal that extends the Animal class. This class should have an additional attribute endangered Level String representing the conservation status of the animal eg "Critical," "Endangered," "Vulnerable"
Create two concrete classes, EndangeredBird and EndangeredFish, that extend the EndangeredAnimal class. Now, define an interface called Conservable with a method raise Awareness Make these two concrete classes this interface.
The raiseAwareness method should print a message to raise awareness about the conservation status of the animal, ie 'Make a reserved forest for the Vulnerable Bird' or 'Make a reserved lake for the Critical Fish.
In the main file,
Create instances of EndangeredBird & Endangeredfish and show their awareness message.
Create an instance of Animal, Bird, and Fish each. Print the activities of Bird and Fish. Now, create an array of Animals named Zoo and add these three instances to the array.
Define a method called zoo PartyAnimal that will print the sound of all the animals present in the array
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started