2. What will be the order of evaluation for following expressions ?
(i) i + 5 >= j – 6 # First Arithmetic and then Relational operator (ii) s * 10 < p * * 2 # First Arithmetic and then Relational operator (iii) i < j + k > 1 – n # Arithmetic then first relational then second relational
2. What will be the order of evaluation for following expressions ? Read More »