InterviewSolution
Saved Bookmarks
| 1. |
The leaves of an expression tree always contain?(a) operators(b) operands(c) null(d) expressionMy doubt stems from Trees topic in division Trees of Data Structures & Algorithms IThis question was posed to me in exam. |
|
Answer» CORRECT ANSWER is (B) operands The BEST I can explain: The leaves of an expression tree always contain the result of a given expression (i.e.) operands. |
|