Question: What is an appropriate way of removing `my_object` as shown below?
- `delete(my_object);`
- `free(my_object);`
- The garbage collector will destroy the object eventually.
- Exiting the scope will destroy the object.
Answer: The correct answer of the above question is Option A:`delete(my_object);`