Analyze the following code:even = June 7, 2022 by admin ✪ Choose the correct option.Analyze the following code:even = Falseif 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 even!. Submit Answer