Created by Shannon Anderson-Rush
over 8 years ago
|
||
Question | Answer |
Vocabulary | |
Recursion | A programming technique in which a method calls itself. |
Direct Recursion | When a method invokes itself. |
Indirect Recursion | When a method invokes another method, eventually resulting in the original method being invoked again. |
Base Case | The nonrecursive part which lets the recursion eventually end. |
Tail Recursion | is when the recursive call of a method is made at the last executable step of the method. |
Want to create your own Flashcards for free with GoConqr? Learn more.