Multiple choice Which is correct statement about recursion? It is a function which calls to itself. It is a process in which a function calls to itself. It runs for definite number of time without condition. It is used to call global function. It is used to call local function. Reveal answer Fill a bubble to check yourself B Correct answer Explanation This is the correct option as recursion is a process in which a function calls to itself. It is commonly used to calculate factorials.