InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is an infix expression?(a) (a+b)*(c+d)(b) ab+c*(c) +ab(d) abc+*The above asked question is from Application of Stacks in section Application of Stacks of Data Structures & Algorithms II had been asked this question by my school principal while I was bunking the class. |
|
Answer» CORRECT ANSWER is (a) (a+b)*(c+d) BEST explanation: (a+b)*(c+d) is an infix expression. +AB is a prefix expression and ab+c* is a POSTFIX expression. |
|