Register Now

Login

Lost Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Which of the following data structure is used to convert postfix expression to infix expression?

a) Stack
b) Queue
c) Linked List
d) Heap

Answer: a
Explanation: To convert the postfix expression into infix expression we need stack. We need stack to maintain the intermediate infix expressions. We use stack to hold operands.

Join The Discussion