MCQOPTIONS
Saved Bookmarks
| 1. |
What is tail recursion? |
| A. | a recursive function that has two base cases |
| B. | a function where the recursive functions leads to an infinite loop |
| C. | a recursive function where the function doesn’t return anything and just prints the values |
| D. | a function where the recursive call is the last thing executed by the function |
| Answer» E. | |