CJCoding With Joseph

Override a Virtual Method

The base class Animal has a virtual method Speak. Override it in the Dog class so a Dog prints its own message even when it is stored in an Animal variable. Do NOT write a Main method.

The tester runs Animal a = new Dog(); a.Speak(); and the program prints:
The dog barks

Expected Output:

The dog barks
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.