Correct Answer: D. The referenced page is not part of the process's legal address space or is not currently valid for access
Explanation:
The valid-invalid mechanism lets hardware reject references outside the process's permitted pages.
In virtual-memory systems, related state can also indicate whether a legal page is resident.
Paging can place pages in any free frames, so one large contiguous physical hole is unnecessary.
Some internal fragmentation may still occur in the final page of a process.
Correct Answer: A. The page number and offset can be separated using simple binary bit fields
Explanation:
A power-of-two page size lets hardware divide an address by selecting high and low bit ranges.
No arithmetic division is needed to identify the page number and offset.
The page number selects a page-table entry, and the offset selects a byte within that page.
The physical address combines the resulting frame number with the unchanged offset.
Correct Answer: C. To map a process's virtual page numbers to physical frame numbers
Explanation:
A page table provides the translation information required for paged address spaces.
Each process normally has its own mapping because its virtual address space is independent.
Correct Answer: D. It repeatedly splits power-of-two blocks and merges free buddy pairs
Explanation:
The buddy system organizes blocks by powers of two for fast splitting and coalescing.
Two free buddies of the same size can merge into their parent block.
Correct Answer: B. Unused memory inside an allocated block because the block is larger than the request
Explanation:
Internal fragmentation occurs within a partition, page, or allocation unit assigned to a process.
The leftover space cannot be used by another allocation while the block remains assigned.
Correct Answer: A. Free memory exists in separate noncontiguous holes, but no single hole is large enough
Explanation:
External fragmentation wastes memory between allocated regions rather than inside them.
The total free space may be sufficient even though it is not contiguous.