Q. What is tail recursion? (Solved)
1. a recursive function that has two base cases
2. a function where the recursive functions leads to an infinite loop
3. a recursive function where the function doesn’t return anything and just prints the values
4. a function where the recursive call is the last thing executed by the function
- d. a function where the recursive call is the last thing executed by the function