The postfix expression abc+de/*- is equivalent to which of the following infix expression?

Correct Answer: a-(b+[*(d/e)
Given postfix expression : abc+de/*- infix ⇒ a(b+c)(d/e)*- ⇒ a(b+c)*(d/e)- ⇒ a-(b+c)*(d/e) Hence, correct choice is a-(b+c)*(d/e).