Sign in

NewNcertStacks And Queues

Consider the following sequence of operations on an empty stack.

push(54); push(52); pop(); push(55); push(62); s = pop();

Consider the following sequence of operations on an empty queue.

enqueue(21); enqueue(24); dequeue(); enqueue(28); enqueue(32); q = dequeue();

The value of s + q is ______

✓ Correct answer: 86

Want the full step-by-step reasoning?

Practice thousands more questions free on NewNcert
Start practicing →

Question ID #145767 · NewNcert