what is the output of the following program when the method is called with 4?

void unknown(int n)

{

if(n>0)

{

System.out.print("?");

unkown(n-1);

}

}

A. None of the other answers

B.???

C.?????

D.????