. In Unix, which system call creates the new process? a) create b) fork c) new d) none of the mentioned
codemania
Asked: May 28, 20232023-05-28T10:55:32+00:00
2023-05-28T10:55:32+00:00In: Education
. In Unix, which system call creates the new process? a) create b) fork c) new d) none of the mentioned
Share
Related Questions
- What are the types of distributed operating systems? a) Zone based Operating system b) Level based Operating system c) Network ...
- Network operating system runs on ___________ a) every system in the network b) server c) both server and every system ...
- Which principle states that programs, users, and even the systems be given just enough privileges to perform their task? a) ...
- In SCSI disks used in high end PCs, the controller maintains a list of _________ on the disk. The disk ...
- The _______ program initializes all aspects of the system, from CPU registers to device controllers and the contents of main ...
Answer: b
Explanation: In UNIX, a new process is created by fork() system call. fork() system call returns a process ID which is generally the process id of the child process created.