Solved

When Does a Recursive Program Go into Infinite Recursion

Question 1

Multiple Choice

When does a recursive program go into infinite recursion


A) if the loop-continuation test never becomes false
B) if the recursion test never becomes false
C) if the loop-continuation test never becomes true
D) if the recursion step does not converge on the base case

Correct Answer:

verifed

Verified

Related Questions