Consider the following Java code. What will it output?
byte a = 127; byte b = -128; System.out.println(a + b);
-1
255
0
An error occurs