Computer Science, asked by reshmi3152004, 10 months ago

what is recursion? and recursive function?​

Answers

Answered by Anonymous
4

Answer:

-recursion in python is a way of coding in which the function calls itself..

-the function definition which fulfills the recursion is known as recursive function..

#HOPE IT HELPS YOU

PLEASE MARK BRAINLIEST

Answered by srisanjay977
1

Recursion function;

Recursion occurs when a thing is defined in terms of itself or of its type. Recursion is used in a variety of disciplines ranging from linguistics to logic. The most common application of recursion is in mathematics and computer science, where a function being defined is applied within its own definition.

recursive function;

In computer science, recursion is a method of solving a problem where the solution depends on solutions to smaller instances of the same problem. Such problems can generally be solved by iteration, but this needs to identify and index the smaller instances at programming time

Similar questions