CJCoding With Joseph

Interface Method Returning a Boolean

The interface INumberChecker declares bool IsEven(int n). Complete the NumberChecker class so IsEven returns true when n is even and false otherwise. Do NOT write a Main method.

Note that C# prints booleans as True and False. For IsEven(4) the program prints:
True

Expected Output:

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