211k views
0 votes
Which of the following is an argument against implicit heap recovery?

A) Improved performance
B) Increased simplicity
C) Lack of control over memory reclamation
D) Enhanced resource utilization

1 Answer

0 votes

Final answer:

The argument against implicit heap recovery is the lack of control over memory reclamation, as it can introduce unpredictable behavior in critical systems.

Step-by-step explanation:

The argument against implicit heap recovery is C) Lack of control over memory reclamation. Implicit heap recovery, often implemented as garbage collection, automates the process of freeing up memory that is no longer in use by the program. While this can offer benefits such as improved performance and increased simplicity, it takes away the programmer's control over when and how memory is reclaimed. This can be problematic in systems where timing and resource management are critical, as the garbage collector can introduce unpredictable pauses and overhead.

User Theresa Forster
by
8.4k points