Multiple choice

Which of the following is the correct conversion of the infix expression A+B*C into postfix expression?

  1. AB+C*

  2. +A*BC

  3. ABC*+

  4. AB+*C

  5. AB*C+

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

This is the correct form of postfix expression for the given infix expression as in postfix expression operands come before the operators and also the precedence of operators is followed while evaluating any infix expression into postfix one.