โ Back to Polymorphism
Question 586
Loop Over a Base-Type Array
Loop Over a Base-Type Array
The abstract classAnimaldeclaresabstract string Sound(). Create aDogclass whoseSound()returnsWoofand aCatclass whoseSound()returnsMeow, both deriving fromAnimal. The tester puts different animals in oneAnimal[]array and prints eachSound(). Do NOT write aMainmethod. For the array{ Dog, Cat, Dog }the program prints: Woof Meow Woof
Expected Output:
Woof Meow Woof
Topics:
Polymorphism
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.