Multiple Choice
You could create a circular list from a single-linked list by executing the statement ____.
A) tail.next = head;
B) head.prev = tail;
C) tail.head = next;
D) head.tail = prev;
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q1: The Collection interface is the root of
Q2: _ testing refers to testing the smallest
Q3: The _ interface is used to pass
Q4: To obtain a ListIterator, you call the
Q5: The language feature introduced in Java 5.0
Q7: A Node is generally defined inside another
Q8: Give an example of an unboxing statement
Q9: Which of the following is a subclass
Q10: A(n) _ is a statement of any
Q11: Array reallocation is effectively an O(1) operation.