CJCoding With Joseph

Explicit Interface Implementation

IEnglish and ISpanish each declare a method named Hello(). Because the names collide, Bilingual must implement them EXPLICITLY: the English one returns Hello and the Spanish one returns Hola. Do NOT write a Main method.

Called through an IEnglish reference then an ISpanish reference, the program prints:
Hello
Hola

Expected Output:

Hello
Hola
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.