✅ 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 ‘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 will reduce your overall marks for this question).