Multiple Choice
When using recursion on linked lists
A) the linked list class is subclassed,and then the recursive method overrides a method of the same name in the list class
B) the recursive method should be one of the methods specified in the List interface
C) the recursive method should be made private,and should be called by a public non-recursive method
D) the recursive method should not call itself outside of its base case
Correct Answer:

Verified
Correct Answer:
Verified
Q26: The objects that form the units of
Q27: A linked list class uses a Node
Q28: A doubly linked list makes it easy
Q29: A systematic procedure for starting at the
Q30: In a linked list,the predecessor of a
Q31: To remove a node with a positive
Q32: To allocate storage for its elements,an array-based
Q33: A linked list class uses a Node
Q34: In a linked list,the successor of a
Q36: In order to use recursion on linked