As per my understanding the operator precedence for the above expression should turn out to be 1 as per PEDMAS but If I declare the whole expression to be a float then the answer is 1.4.
So, which is the right answer 1 or 1.4?
11%2*7/(3+2)?
1. (3+2) = 5
2. 11%2 = 1
3. Putting all together = 1*7/5 = 1 ans