CJCoding With Joseph

Polymorphism With an Interface

The IAnimal interface declares string Speak(). Complete the Dog and Cat classes so Dog.Speak() returns Woof and Cat.Speak() returns Meow. The tester puts both in a List<IAnimal> and prints each sound on its own line. Do NOT write a Main method.

The program prints:
Woof
Meow

Expected Output:

Woof
Meow
Topics:
Interfaces
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.