bellxgom8141 bellxgom8141 Today at 3:47 AM Computers and Technology Answered What will be printed when this code executes?x = 0y = 0if x == y: print(""x and y are equal"")if x == 0: print(""x is 0"") 1) x and y are equal 2) x is 0 3) Nothing will be printed 4) An error will occur