Convert infix to postfix a+(b*c-(d/e^f)*g)*h
A) “A B C + *”
B) “A + B + C”
C) “A B + C *”
D) “A * B * C”
Answer:
A) “A B C + *”
Explanation:
In infix to postfix conversion, the operator precedence rules dictate that multiplication (“*”) has higher precedence than addition (“+”). Therefore, “A + B * C” is converted to “A B C + *.”