a) Given an INFIX expression M*N*P* (Q/R* (S-T)), convert it into a POSTFIX expression (3 marks) b) Evaluate the postfix
Posted: Fri Jul 01, 2022 5:34 am
a) Given an INFIX expression M*N*P* (Q/R* (S-T)), convert it into a POSTFIX expression (3 marks) b) Evaluate the postfix notation from the (a) and show all the steps by using stack configuration. Given the values of the variables are M = 7, N= 3, P = 4, Q=12, R = 6, S = 5, T=2. (7 marks)