Question: In Unix, which system call creates the new process?
Correct Answer: B. b) fork
Explanation: fork
The fork() system call is used in Unix-like operating systems to create a new process. It creates a copy of the current process, called a child process, which runs concurrently with the parent process.