Question: Which syntax correctly creates a variable that is bound to a tuple?

  1. `my_tuple tup(2, 'apple', 3.5) %D`
  2. `my_tuple [2, 'apple', 3.5].tuple() %D`
  3. `my_tuple = (2, 'apple', 3.5)`
  4. `my_tuple = [2, 'apple', 3.5]`

Answer: The correct answer of the above question is Option C:`my_tuple = (2, 'apple', 3.5)`