Another way to evaluate this is by building the expression as a binary tree from the postfix string and reading it leaf-to-root. The last operator, \(*\), becomes the root with two children: the operand 6 on one side, and the sub-tree for \(12\ 2\ 4\ +\ /\) on the other. That sub-tree's root is \(/\), with children 12 and the sub-tree for \(2\ 4\ +\), whose root is \(+\) with children 2 and 4.
Reading the tree from its leaves up to the root gives one unambiguous result.
Therefore, the correct answer is 12.