Question: What is an appropriate way of removing `my_object` as shown below?

  1. `delete(my_object);`
  2. `free(my_object);`
  3. The garbage collector will destroy the object eventually.
  4. Exiting the scope will destroy the object.

Answer: The correct answer of the above question is Option A:`delete(my_object);`