explain sweep reach and language by the it's diagram
Answers
Answered by
0
Answer:
All the objects which are created dynamically (using new in C++ and Java) are allocated memory in the heap. If we go on creating objects we might get Out Of Memory error, since it is not possible to allocate heap memory to objects. So we need to clear heap memory by releasing memory for all those objects which are no longer referenced by the program (or the unreachable objects) so that the space is made available for subsequent new objects.
Explanation:
Mark me as brainiest
Similar questions