โ Back to Polymorphism
Question 563
Abstract Property Implement
Abstract Property Implement
TheabstractclassAnimaldeclares an abstract read-only propertySound. Implement it in theCatclass so it returnsMeow. A concrete subclass must override every abstract member. Do NOT write aMainmethod. The tester runsAnimal a = new Cat(); Console.WriteLine(a.Sound);and the program prints: Meow
Expected Output:
Meow
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.