Question: Create the classes and interface 1. Create an interface Edible that has one method howToEat that returns a String 2. Create an abstract Animal class
Create the classes and interface 1. Create an interface Edible that has one method howToEat that returns a String 2. Create an abstract Animal class that has one abstract method sound that returns a String 3. Create an abstract Fruit class. 4. The Fruit class will implement the Edible interface (no code should be in this class) 5. Create an Apple class that inherits from Fruit 6. Create an Orange class that inherits from Fruit 7. Create a Lion class that inherits from Animal 8. Create a Chicken class that inherits from Animal and implements the Edible interface Draw a UML diagram to show the relationship between the classes and interface. 0
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
