Linked Lists - Quiz

  • A It can only be traversed in one direction.
  • BIt cannot be circular.
  • CIt has better cache locality than a singly linked list.
  • DIt can be traversed in both directions.
  • A Singly linked list
  • BDoubly linked list
  • CCircular linked list
  • DQuad linked list
  • AImplementing a queue or stack
  • BImplementing a graph
  • CImplementing a hash table
  • DImplementing a string
  • AUsing a for loop
  • BUsing a while loop
  • CUsing recursion
  • DUsing a do-while loop
  • A Singly linked lists have poor cache locality.
  • BSingly linked lists require more memory than doubly linked lists.
  • CSingly linked lists cannot be circular.
  • DSingly linked lists do not allow for efficient traversal in both directions.