What is the base case in a recursive function?

  • The initial condition
  • The stopping condition
  • The recursive condition
  • The iterative condition
In a recursive function, the base case is the condition that prevents further recursion. It is crucial for stopping the recursion and ensuring that the function does not enter an infinite loop.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *