dentify the base case in this recursive function. Assume i>0 when the function is invoked. (Line numbers are not part he code.) 1. def add(i, j): if i == 0: return j else: 5. return add(i - 1, j + 1) O This function has no base case O line 5 O line 1 O line 4 O line 2

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter15: Recursion
Section: Chapter Questions
Problem 1TF
icon
Related questions
Question
Identify the base case in this recursive function. Assume i> 0 when the function is invoked. (Line numbers are not part of
the code.)
1. def add(i, j):
2.
if i == 0:
3.
return j
4.
else:
5.
return add(i - 1, j + 1)
This function has no base case
O line 5
line 1
line 4
O line 2
Question 6
The following recursive function is supposed to return a list that is the reverse of the list it was given. But it has a bug.
What is the bug? (Line numbers are not part of the code.)
MooP eok Dr
Transcribed Image Text:Identify the base case in this recursive function. Assume i> 0 when the function is invoked. (Line numbers are not part of the code.) 1. def add(i, j): 2. if i == 0: 3. return j 4. else: 5. return add(i - 1, j + 1) This function has no base case O line 5 line 1 line 4 O line 2 Question 6 The following recursive function is supposed to return a list that is the reverse of the list it was given. But it has a bug. What is the bug? (Line numbers are not part of the code.) MooP eok Dr
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Computational Systems
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning