The following sequence of operations are performed on an empty Queue Q: ADD(1,Q), ADD(2,Q), REMOVE(Q), ADD(1,Q), ADD(2,Q), REMOVE(Q), REMOVE(Q), REMOVE(Q), ADD(2,Q), REMOVE(Q). The sequence of the removed values are?
a.2,1,2,2,1
b.2,1,2,2,2
c.2,2,1,1,2
d.1,2,1,2,2