What is the value of x? x = int(13.25 + 4/2)
15
Reason — According to operator precedence, division will be done first followed by addition and then it will convert to integer.
x = int(13.25 + 4/2)x = int(13.25 + 2.0)x = int(15.45)x = 15