PROCEDURE POP_QUEUE(TOP)[Where top of the queue has been caught in pointer ‘TOP’]1. [Removing the top node of queue]P <-- TTOP <-- LINK (TOP)Call REMOVE NODE(P)return (TOP).2. [FINISH] return.