✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Consider the following code which uses Python to call the Unix ‘fork’ system call.
pid = os.fork()
if (pid>0) :
# case 1
else :
# case 2
Select all of the following statements that are true (incorrect selections gain negative marks).