McqMate
Sign In
Hamberger menu
McqMate
Sign in
Sign up
Home
Forum
Search
Ask a Question
Sign In
McqMate Copyright © 2025
→
Computer Science Engineering (CSE)
→
Data Structure and Algorithms (DSA)
→
Queue is a -------------- List .
Q.
Queue is a -------------- List .
A.
fifo
B.
lifo
C.
lilo
D.
liso
Answer» A. fifo
1.4k
0
Do you find this helpful?
15
View all MCQs in
Data Structure and Algorithms (DSA)
Discussion
No comments yet
Login to comment
Related MCQs
Consider an implementation of unsorted singly linked list. Suppose it has its representation with a head pointer only. Given the representation, which of the following operation can be implemented in O(1) time? i) Insertion at the front of the linked list ii) Insertion at the end of the linked list iii) Deletion of the front node of the linked list iv) Deletion of the last node of the linked list
Consider an implementation of unsorted doubly linked list. Suppose it has its representation with a head pointer and tail pointer. Given the representation, which of the following operation can be implemented in O(1) time? i) Insertion at the front of the linked list ii) Insertion at the end of the linked list iii) Deletion of the front node of the linked list iv) Deletion of the end node of the linked list
A variation of linked list is circular linked list, in which the last node in the list points to first node of the list. One problem with this type of list is?
Consider an implementation of unsorted singly linked list. Suppose it has its representation with a head and tail pointer. Given the representation, which of the following operation can be implemented in O(1) time? i) Insertion at the front of the linked list ii) Insertion at the end of the linked list iii) Deletion of the front node of the linked list iv) Deletion of the last node of the linked lis
A _______ list structure can be traversed in two directions-- in the forward direction from beginning of the list to end, or in the backward direction, from the end of the list to the beginning.
_________ header list combines the advantages of a two-way list and a circular header list.
A variant of linked list in which last node of the list points to the first node of the list is?
To insert a node in a circular list at rear end it should be inserted at …...of the queue
To find the predecessor, it is required to traverse the list from the first node in case of singly linked list.
Each node in a linear list contains an item called _______ which points to the next node in the list.