โ Back to Inheritance
Question 515
Override Speak Method
Override Speak Method
The base classAnimaldeclares avirtualmethodSpeak()that printsSome sound. OverrideSpeak()inCowso it printsMooinstead. Because the method is virtual, the override runs even when the object is referenced through theAnimaltype. Do NOT write aMainmethod. When the tester stores aCowin anAnimalvariable and callsSpeak(), the program prints: Moo
Expected Output:
Moo
Topics:
Inheritance
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.