1. What is the primary purpose of the fork() system call in process management?
To create a new process by copying the current one
Erklärung
The fork() system call creates a new process by duplicating the calling process. The new process is called the child process, and it has a separate address space. This is fundamental for process creation in UNIX/Linux systems.