✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
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).