CJCoding With Joseph

One Method, Many Animals

A method that takes a base-class parameter can accept ANY derived object. The Animal, Dog, and Cat classes are complete. In the Speaker class, finish MakeItSpeak(Animal a) so it returns the result of calling Speak() on the given animal. The correct overridden version runs automatically. Do NOT write a Main method.

For a Dog the program prints:
Woof

Expected Output:

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.