• Name: What will be the output of the following Python code? >>>t1 = (1, 2, 4, 3) >>>t2 = (1, 2, 3, 4) >>>t1 < t2
  • What will be the output of the following Python code?

    t1 = (1, 2, 4, 3) t2 = (1, 2, 3, 4) t1 < t2

    • False
      Correct! Elements are compared one by one in this case.
    • Error
      Incorrect
    • None
      Incorrect
    • True
      Nope