☑Kizspy.me
(Choose 1 answer)
☐ A
Consider the following function:
void quiz (int n)
{if (n> 1)
{quiz (n/2);
quiz(n/2);
}
System.out.print("* ");
}
How many asterisks are printed by the function call quiz (5)?
A. 3
B. 4
Back
Next
C. 7
FUQ.sh
sh the exam.
D. 8