Question
On a UNIX-like system, which system call creates a new process by duplicating the calling process?
Select an option. Your answer will be checked instantly.
Correct Answer: A. fork()
Explanation:
fork() creates a child process whose initial state is based on the parent process.
The other calls access files or change permissions rather than create processes.
Leave a Reply