InterviewSolution
Saved Bookmarks
| 1. |
Which of the following problems can’t be solved using recursion?(a) Factorial of a number(b) Nth fibonacci number(c) Length of a string(d) Problems without base caseThe question was asked in an online interview.My doubt stems from Recursion topic in division Recursion of Data Structures & Algorithms II |
|
Answer» The correct answer is (d) Problems without base CASE |
|