A process executes the following code
for (i = 0; i < n; i ++) fork( );
The total number of child processes created is
1
n2
2
2n+1 - 1
3
2n
4
2n -1
A process executes the following code
for (i = 0; i < n; i ++) fork( );
The total number of child processes created is