C Sharp (C#) - Collections
Given a Stack with elements 5, 10, 15 (top is 15), and a Queue with elements 20, 25, 30 (front is 20), what will be the content of the Queue after moving all Stack elements into it by popping from Stack and enqueuing into Queue?
