What is the output of the following program?
def isEven (num): return num % 2 == 0
if isEven(3): print("3 is even")
else: print("3 is not even")
A. 3 is not even
B. There is no output
C. There is an error, and doesn't run
D. 3 is even