Question: Which syntax correctly creates a variable that is bound to a tuple?
- `my_tuple tup(2, 'apple', 3.5) %D`
- `my_tuple [2, 'apple', 3.5].tuple() %D`
- `my_tuple = (2, 'apple', 3.5)`
- `my_tuple = [2, 'apple', 3.5]`
Answer: The correct answer of the above question is Option C:`my_tuple = (2, 'apple', 3.5)`