treeapplepod1151 treeapplepod1151 19-07-2019 Computers and Technology contestada Trailer nodes at the end of the list should contain avalue ____ than the largest value in the dataset. a. smaller b. larger c. a or b d. None of the above int exampleRecursion (int n) { if (n==0) return 0; else return exampleRecursion(n-1) + n*n*n; }