Question:easy

Which type of fragmentation occurs when allocated memory blocks are larger than the requested memory size?

Show Hint

The extra space is trapped inside the block, not between blocks.
Updated On: Jul 2, 2026
  • External Fragmentation
  • Internal Fragmentation
  • Page fault
  • Segmentation
Show Solution

The Correct Option is B

Solution and Explanation

Focus on where the wasted memory lies. If a request needs 3 KB but the allocator hands over a fixed 4 KB frame, then 1 KB is stuck unused inside that frame. No one else can touch it until the frame is freed.

Waste that is trapped within the granted block points to internal fragmentation. Waste that lies in the gaps between blocks would be external fragmentation.

$$\text{Internal waste} = \text{block size} - \text{requested size}$$\[\boxed{\text{Internal Fragmentation}}\]
Was this answer helpful?
0