Computer Science, asked by Jacob1923, 1 year ago

What is the process of executing a child process from a parent process called?

Answers

Answered by Meet005
0
Unix-like systems

Zombie processes

Orphan processes
Answered by iTzpyaribachi
0

ANSWER- System call fork() is used to create processes. It takes no arguments and returns a process ID. The purpose of fork() is to create a new process, which becomes the child process of the caller. After a new child process is created, both processes will execute the next instruction following the fork() system call.

Similar questions