☑Kizspy.me
(Choose 1 answer)
☐ A
Given a function as follows:
def rec(n):
if (n == 0):
return n
else:
return n + rec(n-1)
What is statement "if (n ==
A. Base case
B. Recursive calls
0):" called in recursive algorithm?
Back
Next
FUQ.sh
sh the exam.
C. Recall case
D. Nothing