Recursion

studied byStudied by 84 people
5.0(1)
learn
LearnA personalized and smart learning plan
exam
Practice TestTake a test on your terms and definitions
spaced repetition
Spaced RepetitionScientifically backed study method
heart puzzle
Matching GameHow quick can you match all your cards?
flashcards
FlashcardsStudy terms and definitions

1 / 3

4 Terms

1
recursion
a way to make a function call itself
New cards
2
recursive call
distinguishing characteristics of a recursive method, relates to the method call itself
New cards
3
base case
a way to stop recursive calls
New cards
4
call stack
keeps track of the methods that are being called when the code runs, as well as local variables and where the call returns to
New cards
robot