Computer Science, asked by ramsha5394, 1 year ago

In unix, which system call creates the new process? Select one: a. New b. Create c. Fork d. None of the mentioned

Answers

Answered by siddhartharao77
2

In UNIX, fork system creates the new process.

Brief note on creating new process:

The fork system creates an exact copy of original process. Here, the forking process is called as "parent process" and the new process is called as "child process". If any changes take place in parent process, those chose are not visible to the child and vice versa. Before a fork, if a file is open in the parent then it will continue to be open in the parent and child afterward.

Hope it helps!

Answered by Anonymous
1

Explanation:

In unix, fork system call creates the new process

Similar questions