Assume that the operators +,-, X are left associative and ^ is right associative. The order of precedence (from highest to lowest) is ^, X, +, -. The postfix expression for the infix expression a + b X c – d ^ e ^ f is?

Correct Answer: abc X+ de^f^ –
Given Infix Expression is a + b X c – d ^ e ^ f. And X is right associative. Thus the final postfix expression is abc X+def^^-