unit 10 Flashcards
1
Q
what is a recursive method?
A
any method that calls to itself at least once, even if that call is within an if/else
2
Q
define base case
A
the case of the recursive method where it just returns an answer, rather than calling back to the method
(THE BOOLEAN EX. (y <= 1) )
3
Q
A