MCQ IN COMPUTER SCIENCE & ENGINEERING

COMPUTER SCIENCE AND ENGINEERING

DATA STRUCTURES

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
Suppose you have the following series of queue operations.q = Queue();q.enqueue(1);q.enqueue(10);q.enqueue(100);q.dequeue();q.dequeue();What items are the output?
A
10010
B
101
C
110
D
10010
Explanation: 
There is 1 question to complete.