InterviewSolution
Saved Bookmarks
| 1. |
What is a recursive function? |
|
Answer» A recursive function is one which calls itself, directly or calls a function that in turn calls it. Every recursive function follows the recursive properties − base criteria where functions stops calling itself and progressive approach where the functions tries to meet the base criteria in each iteration. |
|