Answer Posted / Mohd Ramiz
Recursion is a method where a function calls itself. Key features of recursion include solving problems by breaking them down into smaller, simpler sub-problems, which can be solved using the same solution. It allows for more readable and maintainable code in certain cases, but it should be used with caution due to potential issues such as infinite loops.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers