Week 4 — What is meant by recursion?
Question of the Week #4
What is meant by recursion?
4 Replies
The process in which a function calls itself directly or indirectly is called recursion and the corresponding function is called a recursive function.
Submission from sahilasopa#2787
recursion - function/method that calls itself
immediately, or with another method/function(s).
for example:
this can be repeated with up to infinity methods/functions.
Submission from Avasay_Sayava#8277
Unknown User•2y ago
Message Not Public
Sign In & Join Server To View