CJCoding With Joseph

Check the Interface Type With is

Complete the Inspector.Describe method so it returns chargeable when the given object implements the IChargeable interface and not chargeable otherwise. Use the is operator. Do NOT write a Main method.

For a Phone (which is IChargeable) the program prints:
chargeable

For a plain string it prints:
not chargeable

Expected Output:

chargeable
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.