Page 1048 - AP Computer Science A, 7th edition
P. 1048

Chapter 7 Recursion
ANSWERS EXPLAINED
1. (D) Tail recursion is when the recursive call of a method is made as the last executable step of the method. Divide-and- conquer algorithms like those used in mergesort or quicksort have recursive calls before the last step. Thus, statement II is false.
  































































































   1046   1047   1048   1049   1050