CJCoding With Joseph

Abstract Property Implement

The abstract class Animal declares an abstract read-only property Sound. Implement it in the Cat class so it returns Meow. A concrete subclass must override every abstract member. Do NOT write a Main method.

The tester runs Animal 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.