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