145k views
3 votes
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;

}

User Fabdarice
by
7.4k points

1 Answer

1 vote

Answer:

b. larger

Step-by-step explanation:

Trailer nodes at the end of the list should contain avalue larger than the largest value in the dataset.

User Xavier Decoster
by
7.7k points