☑Kizspy.me
Answer (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
C. 7
D. 8
0
sh the exam.
LAPTOP RUNNING