question archive Modify the Animal class created in the class, with an overloaded sound() method
Subject:Computer SciencePrice: Bought3
Modify the Animal class created in the class, with an overloaded sound() method. This method
should be overloaded based on various primitive data types, and print different types of animal
sounds ("oink", "honk", etc.), depending on which overloaded version is called. generate a main()
that calls all the different versions. Create child classes (and test with the main method) for Pig,
Sheep, Duck and Cow. NOTE: The sound() method does not generate the sound;
it only prints the sound word to output. java program