Question: What is the correct syntax for creating a vaiable that is bound to a list?

  1. `my_list = (2, 'apple', 3.5)`
  2. `my_list = [2, 'apple', 3.5]`
  3. `my_list = [2, 'apple', 3.5].to_list()`
  4. `my_list = to_list(2, 'apple', 3.5)`

Answer: The correct answer of the above question is Option B:`my_list = [2, 'apple', 3.5]`