For questions relating to the Reverse Polish Notation, which is a notation for mathematical expressions where the operands precede the operator.
In computing, RPN is ideally suited for a stack-based implementation, and in hardware it has a long history with HP hand-held calculators.
E.g. 1 2 + means apply the + operator to the operands 1 and 2.