298 views
0 votes
0 votes
A process executes the following segments of code : 
for (i = 1; i ≤ 4; i++) 
fork ( ); 
The number of new processes created is __________.

Your Answer:

8

Correct Answer: 15    Status: incorrect

1 Answer

Related questions

2 votes
2 votes
3 answers
4
Philosophical_Virus asked Dec 10, 2023
899 views
Int main (){fork();printf("a");fork();printf("b");return 0;}How many distinct outputs are possible of above code? And also give outputs