The value of the expressions 4/(3*(2 - 1)) and 4/3*(2 - 1) is the same.
1 Like
True
Reason — Parentheses has first precedence then multiplication then division has precedence.
4/(3*(2-1))= 4/(3*1)= 4/3= 1.33333
4/3*(2-1)= 4/3*1= 4/3= 1.33333
Answered By
The expression int(x) implies that the variable x is converted to integer.
The value of the expressions 4/(3*(4 - 2)) and 4/3*(4 - 2) is the same.
The expression 2**2**3 is evaluated as: (2**2)**3.