Multiple choice technology programming languages The range of a byte is from -127 to 128. True False Reveal answer Fill a bubble to check yourself B Correct answer Explanation The statement is false. The byte data type in Java is an 8-bit signed two's complement integer, so its range is from -128 to 127, not -127 to 128. This is a common misconception - byte can hold 256 distinct values centered around zero.