☑Kizspy.me
Answer (Choose 1 answer)
☐ A
Consider the following function:
void quiz (int n)
{if (n> 1)
{quiz(n);
Back
Next
FUQ.sh
sh the exam.
quiz (n);
}
System.out.print("* ");
}
What will happen if the statement quiz(5); is run?
A. The program keeps running until you press Ctrl-C
B. The run-time stack overflows, halting the program
C. The operating system detects the infinite recursion because of the "repeated state"
D. The results are nondeterministic