Multiple choice

The function that calls itself is known as


  1. recursive function

  2. overloaded function

  3. inline function

  4. overridden function

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

A recursive function is a function that calls itself during execution. This allows the function to repeat itself several times displaying the result after each iteration. Recursive functions are popular among programmers since they allow them to write efficient program using minmal amount of code.