Question:medium

Choose the correct statements about fork and vfork system calls. Statement-I: vfork is faster than fork. Statement-II: fork is safer than vfork. Statement-III: vfork shares parent's memory, fork copies memory.

Show Hint

fork() = safer, separate memory vfork() = faster, shared memory
Updated On: Jun 25, 2026
  • Statement-I and Statement-II only
  • Statement-II and Statement-III only
  • Statement-I and Statement-III only
  • Statement-I, Statement-II and Statement-III
Show Solution

The Correct Option is D

Solution and Explanation

Was this answer helpful?
0