The postfix expression of A + B * C is:
2025
The postfix expression of A + B * C is:
- A.
ABC*+
- B.
AB+C*
- C.
A+BC*
- D.
*+ABC
Attempted by 105 students.
Show answer & explanation
Correct answer: A
Multiplication has higher precedence than addition, so A + B * C becomes A + (B * C). The postfix form is A B C * +, written as ABC*+.