The equivalent postfix expression corresponding to the infix expression (A -…
2026
The equivalent postfix expression corresponding to the infix expression (A - B*C)/(D-E) is
- A.
ABC - *DE/--
- B.
A*BC - DE-/
- C.
ABC* - DE-/
- D.
AB*C - DE-/
Attempted by 241 students.
Show answer & explanation
Correct answer: C
To convert (A - B*C)/(D-E) to postfix: 1. Process inner parentheses first. 2. Apply precedence (* before -). 3. Result is ABC*-DE-/.