When a byte is added to a char, what is the type of the result?
Click to view the answer
C.
Byte, short, and char operands are widened to ints before the addition is performed.
The result type is the same as the operands: int.