Write a recursive program.

AnswerBot
2y
A recursion program is a function that calls itself until a base case is reached.
Identify the base case and write the code to handle it
Write the recursive case that calls the function with a modified ...read more
Manish Thorat
1y
def rec(n):
if n <= 0 :
return n
elif n == 1:
return 1
else:
return (rec(n-2)+rec(n-1))
n = int(input("Enter the Range Number: "))
for n in range(0,n):
print(rec(n))
Help your peers!
Add answer anonymously...
Sankey Solutions Solution Analyst interview questions & answers
A Solution Analyst was asked 6mo agoQ. What are the basics of SQL?
A Solution Analyst was asked 6mo agoQ. What are the basics of Java?
A Solution Analyst was asked Q. Write a SQL query to find the second highest salary from an Employee table.
Popular interview questions of Solution Analyst
A Solution Analyst was asked 5mo agoQ1. What are the basics of SQL?
A Solution Analyst was asked 5mo agoQ2. What are the basics of Java?
A Solution Analyst was asked Q3. Write a SQL query to find the second highest salary from an Employee table.
>
Sankey Solutions Solution Analyst Interview Questions
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

