Which of the following creates a tuple?
t1 = ("a", "b")
Reason — The statement t1 = ("a", "b") creates a tuple with two elements: "a" and "b".