MCQ
What is tail recursion?
- AA recursive function that has two base cases
- BA function where the recursive functions leads to an infinite loop
- CA recursive function where the function doesn't return anything and just prints the values
- ✓A function where the recursive call is the last thing executed by the function