(Choose 1 answer)
Consider the following function:
void printOut(int count)
{if((count % 2) == 0)
System.err.println("StdErr: Line " + count + "");
else
System.out.println("StdOut: Line " + count + "");
if(count == 0) return;
else
printOut(count-1);
} What value for X the statement printOut(X); will print EXACTLY 5 lines to standard output (Lines start with "StdOut:"), in the fewest number of recursive calls?
A 9
B. 10
C. 8
D. 11
vato
fini
Exit 40