CJCoding With Joseph
15per day

Dog Extends Animal

An Animal base class is provided by the tester. It has a public Name field, a constructor Animal(string name), and a virtual string Speak(). Create a class Dog that inherits from Animal, passes the name to the base constructor, and OVERRIDES Speak() to return "Woof". Do NOT write a Main method.

For a Dog named Rex the program prints: Rex says Woof

Expected Output:

Rex says Woof
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.