Loading practice questions
In UNIX operating system, when a process creates a new process using the fork() system call, which of the following state is shared between the parent process and child process?
Correct Answer: D — Shared memory segments
Explanation:
While fork() creates a separate address space copying the heap and stack, shared memory segments remain shared between the parent and child processes.