Open In App
Related Articles

GATE | GATE CS 1997 | Question 7

Improve Article
Improve
Save Article
Save
Like Article
Like

Which of the following is essential for converting an infix expression to the postfix from efficiently ?
(A) An operator stack
(B) An operand stack
(C) An operand stack and an operator stack
(D) A parse tree


Answer: (A)

Explanation: Operator stack is used for converting infix to postfix expression such that operators like as +, *, (, ), / are pushed in stack where as operand stack is used for converting Postfix to Prefix evaluation such that operands are 7,2,1,2 etc.

Hence, option (A) is correct.

Quiz of this Question

Last Updated : 06 Feb, 2020
Like Article
Save Article
Similar Reads