Junior — Middle
What is the maximum number of different values that can be represented in one byte?
sobes.tech AI
Answer from AI
One byte can represent 256 different values, since a byte consists of 8 bits, and the number of combinations is 2^8 = 256. Values can range from 0 to 255 (if unsigned integer) or from -128 to 127 (if signed integer).