Q. Which of the following is used to handle dynamic memory allocation in C++?
β
Correct Answer: (A)
new and delete
Explanation: 'new' and 'delete' are used to allocate and deallocate memory dynamically in C++.