Asked by Shani Osman on Sep 28, 2024

Infinite recursion:

A) will happen when there is no base case
B) will not happen when there is a base case
C) will not happen if we use subproblems
D) none of the above

Infinite Recursion

A condition where a function calls itself indefinitely, often leading to a stack overflow error.

Base Case

In recursive programming, the condition under which a recursive function returns without making any more recursive calls.

  • Perceive the essentiality of a base case in recursion to prevent recursion from becoming infinite.