CJCoding With Joseph

Implement Two Interfaces

A class can implement more than one interface. Make Duck implement BOTH IWalk and ISwim: Walk() returns Duck walks and Swim() returns Duck swims. The same object can then be used through either interface. Do NOT write a Main method.

The tester calls Walk() through an IWalk and Swim() through an ISwim:
Duck walks
Duck swims

Expected Output:

Duck walks
Duck swims
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.