EvilZone

Encyclopedia Galactica => Science => : Kulverstukas November 30, 2014, 11:25:23 AM

: 8 bit binary problem
: Kulverstukas November 30, 2014, 11:25:23 AM
How do you represent 2635 in 8bit binary? I guess you can't - it's too big for 8bits (127)?
: Re: 8 bit binary problem
: Stackprotector November 30, 2014, 11:53:56 AM
8 bits is 1 byte which has a max of 255. A integer is 4 bytes (32 bits).
: Re: 8 bit binary problem
: madf0x November 30, 2014, 06:55:48 PM
Sure you can. All you have to do is destroy the typical representation of 1s and 0s. If you're willing to sacrifice being able to represent other numbers/information you could make 8bits represent whatever you want. Remember even binary is simply an abstraction of information, and abstractions can change. You'd likely lose interoperability or require a translation mechanism of some sort.
: Re: 8 bit binary problem
: freeuser September 23, 2015, 01:36:45 PM
The max number that can be representable in 8 bit is 256 so it's impossible.
: Re: 8 bit binary problem
: RedBullAddicted September 23, 2015, 06:54:49 PM
The max number that can be representable in 8 bit is 256 so it's impossible.

Maybe you should have read Stackprotectors post first. pow( 2, 8 ) is 256.. thats correct. But it only means that one byte (8 bits) can represent 256 different values which are 0 - 255 (cause 0 is a value you have to count, too). Necroing an old thread just to provide wrong information isn't such a good start, is it? :P
: Re: 8 bit binary problem
: khofo September 24, 2015, 12:33:56 AM
The max number that can be representable in 8 bit is 256 so it's impossible.
(http://i.imgur.com/TjMkEv9.jpg)
: Re: 8 bit binary problem
: Stackprotector September 24, 2015, 10:10:11 AM
</thread>