Analyze the following code:
even = False
if even = True:
____print("It is even!")
A. The program has a syntax error in line 1 (even = False)
B. The program has a syntax error in line 2 if even = True is not a correct condition. It should be replaced by if even == True: or if even:.
C. The program runs, but displays nothing.
D. The program runs and displays It is