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.?
+2
Answers (1)
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “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 ("?"); ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Home » Computers and Technology » 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.?