What will be the value of the expression? 14 + 13 % 15
27
Reason — According to operator precedence remainder (%) operation will be done first and then addition (+) will be done.
14 + 13 % 15= 14 + 13= 27