Asked by Sarah Saintilus on May 01, 2024

verifed

Verified

A function can invoke a second function, which in turn invokes the first function; this type of recursion is referred to as ____ recursion.

A) direct
B) mutual
C) self-referential
D) tail

Mutual Recursion

A situation where two or more functions call each other in a recursive manner.

Invokes

To invoke in programming means to run or execute a function, method, or procedure.

Function

A block of code that performs a specific task, designed to execute a particular operation when invoked.

  • Understand the fundamentals of recursion, which encompass both direct and mutual recursion.
verifed

Verified Answer

ZK
Zybrea KnightMay 02, 2024
Final Answer :
B
Explanation :
Mutual recursion occurs when two or more functions call each other in a cycle. In this scenario, the first function calls the second, and the second function calls the first, creating a loop of function calls.