Quiz on Linked Lists
Test yourself on what you've learned about linked lists.
We'll cover the following...
1
Which statement about a SLList
having head
and tail
is true?
A)
A SLList
can only implement Stack
operations, not Queue
operations.
B)
A SLList
can implement both Stack
and (FIFO) Queue
operations in constant time per operation.
C)
A SLList
can implement only Deque
operations.
D)
A SLList
cannot implement any of the List
interface operations in constant time.
Question 1 of 50 attempted