What will be the value of the expression? 14 + 13 % 15
6 Likes
27
Reason — According to operator precedence remainder (%) operation will be done first and then addition (+) will be done.
14 + 13 % 15= 14 + 13= 27
Answered By
1 Like
Which of these is not a core data type?
How would you write xy in Python as an expression ?
Evaluate the expression given below if A = 16 and B = 15. A % B // A
What is the value of x? x = int(13.25 + 4/2)