Problem
1. What is the value of the reverse Polish notation expression 2 3 4 + 5 × ×?
2. Why does the branch for the subtraction operator in the Calculator program not simply execute results.push(results.pop() - results.pop());
3. In the evaluation of the expression 3 - 4 + 5 with the algorithm, which operator gets evaluated first?