wookiebrewer2302 wookiebrewer2302 26-03-2024 Computers and Technology contestada What is the output of the following program?def isEven (num): return num % 2 == 0if isEven(3): print("3 is even")else: print("3 is not even")A. 3 is not evenB. There is no outputC. There is an error, and doesn't runD. 3 is even