Question
Which technique lets a parent and child initially share physical pages after fork and copies a page only when one writes to it?
Select an option. Your answer will be checked instantly.
Correct Answer: A. Copy-on-write
Explanation:
Copy-on-write delays physical duplication until a process attempts to modify a shared page.
This reduces fork time and memory use when many pages remain unchanged or exec follows soon.
Leave a Reply