True/False. The fork() system call in Unix creates a child p…

True/False. The fork() system call in Unix creates a child process by cloning the parent process’s memory address space. After fork(), both the parent and child processes resume execution from the same program counter, but the return value of fork() differs: it is 0 in the child process and the child’s PID in the parent process.