English, asked by rahulrock, 1 year ago

A) what system calls have to be executed by a command interpreter or shell in order to start a new process? explain briefly.a) what system calls have to be executed by a command interpreter or shell in order to start a new process? explain briefly.

Answers

Answered by Priyankacherus
12
In Unix Systems,  fork system call followed by an exec system call needs to be performed to start a new process. The fork call clones the currently executing process, while the exec calls overlays a few processes based on a different executable over the calling process.

Hope it helps.

Plz mark as brainliest if helpful. 
Answered by asleycamacho00
2

Answer:

In Unix systems, a fork system call followed by an exec system call need

to be performed to start a new process. The fork call clones the currently

executing process, while the exec call overlays a new process based on a

different executable over the calling process.

Explanation:

Similar questions