In UNIX which system call creates the new process?
2026
In UNIX which system call creates the new process?
- A.
new
- B.
create
- C.
fork
- D.
none of the above
Attempted by 186 students.
Show answer & explanation
Correct answer: C
In UNIX, the fork() system call is used to create a new process. It creates an exact copy of the calling process, resulting in two processes running concurrently.