Computer Science, asked by jerinjs7058, 1 year ago

A function that calls itself for its processing is known as mcq

Answers

Answered by nitish8089
4
here is ur answer
 recursion \: or \: recursive \: function
Answered by AskewTronics
0

Recursive Function is the correct answer for the above question.

Explanation:

A recursive function is a concept in which any function is called by itself in some amount of time. This type of function works like a loop but the difference between them is about their work. When a user wants to define any recursive function then he needs to define by giving the calling statement to call that function within the body of that function. Just for example in c language--

int fun()

{

fun();

}

Here the fun function is called by the body of fun function which is the example of Recursive function. The above question asked about the concept in which any function is called by any other function. Then the answer is Recursive function.

Learn More:

  • Recursive Function: https://brainly.in/question/14134735
Similar questions