Java follows standard mathematical precedence: multiplication before addition. So 2 + 3 * 5 = 2 + (3 * 5) = 2 + 15 = 17. Since all operands are integers, the result is also an integer (int), not a byte. The '17, int' option correctly captures both the calculated value and the data type.