Indirect recursion involves a function calling another function that eventually calls the original function, forming a _______. 

  • cycle 
  • chain 
  • tree 
  • grid
Indirect recursion forms a cycle where function A calls function B (or a series of functions), and eventually, one of those functions calls back to function A. This loop of function calls forms the cycle characteristic of indirect recursion.
Add your answer
Loading...

Leave a comment

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