Question:medium

What is recursion?

Show Hint

Every recursive function must contain two vital components: a base case (the termination condition) and a recursive step (the mechanism where the function calls itself with modified parameters).
Updated On: May 9, 2026
  • looping
  • a function calls another function repeatedly
  • a function calls repeatedly
  • function calls itself repeatedly
Show Solution

The Correct Option is D

Solution and Explanation

Was this answer helpful?
0