Zusammenfassung der Ressource
Frage 1
Frage
A recursive method is a method that calls itself.
Frage 2
Frage
Recursion is not the same as nested for loops or while loops.
Frage 3
Frage
A recursive method must have a base case that tells the method to stop calling itself.
Frage 4
Frage
The base case of a recursive call is a comparison between a parameter of the method and some specific predefined value chosen by the programmer.