Problem #435 CORE JAVA PROGRAMMING

Write a Java program to create a class called Animal with a method called makeSound(). Create a subclass called Cat that overrides the makeSound() method to bark.

Your Solution