Computer Science, asked by developervirus74, 8 days ago

In tail recursion, calculations perform first then execute the recursive call and the recursive call should be the last statement. Select one: True False​

Answers

Answered by SabrinaHaque
1

A recursive function is tail recursive when a recursive call is the last thing executed by the function.

So yes, the answer is true.

Similar questions