Computer Science, asked by anatasia, 5 hours ago

what's the role of recursion in the field of software engineering? ​

Answers

Answered by Anonymous
0

Answer:

Recursion is a method of program design where you break apart a problem into smaller repeatable subtasks. The program will complete each subtask later combined to achieve a solution. The primary feature that defines recursion is that a recursive function calls itself, either directly or indirectly during execution.

Similar questions