Home » JAVA Programming » Data Structures » Question
  1. Where does a new element be inserted in linked list implementation of a queue?
    1. All the old entries are pushed and then the new element is inserted
    2. At the centre of list
    3. Tail of list
    4. Head of list
    5. None of these
Correct Option: C

To maintain FIFO, newer elements are inserted to the tail of the list.



Your comments will be displayed only after manual approval.