RECURSION Flashcards
1
Q
What is meant by recursion
A
A process using a function that calls itself
The process has a base case and a general case
2
Q
What is base case
A
A way to return without making a recursive call
3
Q
What is a general case
A
Where the recursive call takes place