Question: (b) Recursion can be direct or indirect. It is direct when a function calls itself and it is indirect recursion when a function calls another

(b) Recursion can be direct or indirect. It is direct when a function calls itself and it is indirect recursion when a function calls another function that then calls the first function. To illustrate solving a problem using recursion, consider the Fibonacci series: 1,1,2,3,5,8,13,21,34.. The way to solve this problem is to examine the series carefully. The first two numbers are 1. Each subsequent number is the sum of the previous two numbers. Thus, the seventh number is the sum of the sixth and fifth numbers. More generally, the nth number is the sum of n - 2 and n - 1, as long as n> 2. Recursive functions need a stop condition. Something must happen to cause the program to stop recursing, or it will never end. In the Fibonacci series, n
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
