Question:

Which system call is used to create a new process?

Show Hint

Use `fork()` to spawn new processes — returns 0 to child, PID to parent.
Updated On: May 26, 2025
  • New
  • Process
  • Fork
  • Create process
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is C

Solution and Explanation

In Unix-like systems, `fork()` system call is used to create a new child process which is a duplicate of the parent.
Was this answer helpful?
0
0