What is output of following Python Code? num = 15 if num % 2 == 0: print("Even") else: print("Odd") a) Even b) Odd c) Error d) No output
6
0
12
2K
3