Stack using Queue Doubt

So what does it mean by the term,
Stack using Queue

  1. PUSH efficient
    2.POP efficient

There are two methods for stack using queue.
1.make push O(1) and manage order during pop operation(ie.deque everything and put in other queue)
2.make pop O(1) and manage order during push operation

Please read this link: