2. What is the order of evaluation in the following expressions :
(i) a > b or b <= d ? # First operand first, then second (ii) x == y and y >= m ? # First operand first, then second (iii) a > b < c > d # From left to right
2. What is the order of evaluation in the following expressions : Read More »