bellxgom8141 bellxgom8141 23-01-2024 Computers and Technology contestada 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