In Unix, Which system call creates the new process?
2023
In Unix, Which system call creates the new process?
- A.
fork
- B.
create
- C.
new
- D.
none of the mentioned
Attempted by 240 students.
Show answer & explanation
Correct answer: A
Answer: a
Explanation: In UNIX, a new process is created by fork() system call. fork() system call returns a process ID which is generally the process id of the child process created.