InterviewSolution
Saved Bookmarks
| 1. |
____ is a function in which the function definition includes the function itself.(a) User defined function(b) Pre-defined function(c) Main function(d) Recursive functionThe question was asked in an internship interview.My enquiry is from Computational Processing Resources topic in division Software Defined Radio Architecture of Cognitive Radio |
|
Answer» RIGHT CHOICE is (d) Recursive function The best explanation: Recursive function is a function in which the function definition INCLUDES the function itself. A recursive function MUST also consist of a base case which does not INVOLVE calling the function itself and a set of rules that reduce towards the base case. |
|