Home » C++ Programming » Questions and Answers » Question
  1. How to protect the heap from affecting the memory?
    1. Allocate objects in chunks
    2. Avoid using pointers for associating two data structures
    3. Embed pointed child objects into the parent object
    4. All of above
    5. None of these
Correct Option: D

* Allocate objects in chunks.
* Avoid using pointers for associating two data structures.
* Embed pointed child objects into the parent object.



Your comments will be displayed only after manual approval.