To convert the postfix expression into the infix expression we use stack and scan the postfix expression from left to right.

Correct Answer: True
Stack is used to postfix expression to infix expression. And to convert we follow the following steps: (i) Scan the expression from left to right. (ii) If operand is found, push it on stack.(iii) If operator is found, the two operands are popped and the combined infix expression is formed and pushed onto the stack.