-
How to protect the heap from affecting the memory?
-
- Allocate objects in chunks
- Avoid using pointers for associating two data structures
- Embed pointed child objects into the parent object
- All of above
- 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.