engineering recuitment ISRO Scientist Computer Science Mock Test Operating Systems Process and Thread Process
The process executes the code where i is an integer:
for(i = 0; i <=15; i++)
{
if(i == 5)
continue;
fork();
if(i == 10)
break;
}
The total number of new processes created is _____.1
2047
2
511
3
11
4
1023