InterviewSolution
Saved Bookmarks
| 1. |
What is the result of the given postfix expression?abc*+ where a=1, b=2, c=3.(a) 4(b) 5(c) 6(d) 7I need to ask this question from Application of Stacks topic in chapter Application of Stacks of Data Structures & Algorithms IThe question was asked in examination. |
|
Answer» RIGHT OPTION is (d) 7 Best EXPLANATION: The infix EXPRESSION is a+b*c. Evaluating it, we get 1+2*3=7. |
|