Question: What is the correct syntax for creating a variable that is bound to a set?

  1. `my_set = {0, 'apple', 3.5}`
  2. `my_set = to_set(0, 'apple', 3.5)`
  3. `my_set = (0, 'apple', 3.5).to_set()`
  4. `my_set = (0, 'apple', 3.5).set()`

Answer: The correct answer of the above question is Option A:`my_set = {0, 'apple', 3.5}`