Multiple Choice
In a typical circular doubly linked list,a node has
A) a field to store the element,and two references to keep track of two successor nodes,and a reference to keep track of the start of the list
B) a field to store the element,and two references to keep track of successor and predecessor nodes
C) a field to store the element,and two references to keep track of two predecessor nodes,and a reference to keep track of the end of the list
D) either one of A or C
Correct Answer:

Verified
Correct Answer:
Verified
Q8: In many recursive operations on lists,<br>A) the
Q9: A list method E remove(int index)designed to
Q10: A list in which each stored element
Q11: A linked list class uses a Node
Q12: In Java,the first node in a list
Q14: A linked list class uses a Node
Q15: A linked list class uses a Node
Q16: In a linked list implementation using a
Q17: To remove a node X with index
Q18: A method int size( )in a linked