Google News
logo
Unix - Quiz(MCQ)
Which of the following system call is used for creating a new process in Unix?
A)
read
B)
wait
C)
fork
D)
new

Correct Answer :   fork


Explanation : A process in UNIX is created using fork() system call. It creates an exact copy of the process that invokes it. Now there will be two processes, one parent process and one child process. The process which invokes the fork system call is called parent process and the new process created is called child process.

Advertisement