A function that calls itself directly or indirectly is known as a _______ function. 

  • iterative 
  • recursive 
  • inline 
  • overloaded
A function that calls itself, either directly or indirectly through other functions, is known as a recursive function. Recursion is a powerful programming technique where a problem is broken down into smaller instances of the same problem, typically leading to simpler solutions.
Add your answer
Loading...

Leave a comment

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