387 views
3 votes
3 votes
Which of the following is/are correct? (Mark all the appropriate choices)
  1. Both the first-fit and best-fit strategies for memory allocation suffer from external fragmentation.
  2. Best-fit strategy for memory allocation avoids internal fragmentation.
  3. Best fit is clearly better than first fit in terms of storage utilization.
  4. Internal fragmentation exists when there is enough total memory space to satisfy a request but the available spaces are not contiguous.

1 Answer

Best answer
1 votes
1 votes
Option A is true.

Best-fit strategy for memory allocation reduces internal fragmentation but may not avoid it completely.

Neither first fit nor best fit is clearly better than the other in terms of storage utilization, but first fit is generally faster.

External fragmentation exists when there is enough total memory space to satisfy a request but the available spaces are not contiguous.

Correct answer: A
selected by
Answer:

Related questions

2 votes
2 votes
1 answer
1