CUET-UG SERIES Computer-science
Introduction To Queue Fifo
4 previous year questions.
Volume: 4 Ques
Yield: Medium
High-Yield Trend
2
2024 2
2023 Chapter Questions 4 MCQs
01
PYQ 2023
medium
computer-science ID: cuet-ug-
Which is not the operation of Queue ?
1
Insertfront
2
Push
3
Insertrear
4
Deletionfront
02
PYQ 2023
medium
computer-science ID: cuet-ug-
In a queue, insertions can take place only at the _____ end.
1
Front
2
Rear
3
Top
4
Bottom
03
PYQ 2024
medium
computer-science ID: cuet-ug-
________ data type is used to implement a Queue data structure in Python?
1
Sets
2
Dictionary
3
Tuple
4
List
04
PYQ 2024
hard
computer-science ID: cuet-ug-
What will be the position of front and rear after execution of the following statements, the Queue already had the given elements in FIFO order:
dequeue()
dequeue()
dequeue()
dequeue()
dequeue()
enqueue(100)
dequeue()
dequeue()
dequeue()
dequeue()
dequeue()
dequeue()
enqueue(100)
dequeue()
1
Front 50, Rear 77
2
Front 100, Rear 100
3
Front 77, Rear 100
4
Front 73, Rear 77