Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
6answers
123 views

Representation of a Kilo/Mega/Tera Byte

I was getting a little confused with the representation of different units of bytes. It is accepted throughout that 1 byte = 8 bits However, in a lot of sources I have seen that 1 kiloByte = 2^ ...
3
votes
3answers
384 views

How To Represent 0.1 In Floating Point Arithmetic And Decimal

I am trying to understand floating point arithmetic better and have seen a few links to 'What Every Computer Scientist Should Know About Floating Point Arithmetic' I still don't understand how a ...
3
votes
5answers
227 views

Question about relations between two numbers

Is there is any relation between numbers' bits when one is divisible by another? What is the relation between the bits of 36 and the bit sequences of 9 or 4 or 12, or between 10 (1010) and 5 (101), ...
2
votes
4answers
196 views

Is the double 0.0 always represented exactly in portable C?

Can the following code be expected to work in all environments that have an ANSI-compliant C compiler? double n = 0; assert(n == 0); What about C++?
0
votes
0answers
22 views

Utility to display binary in various integer representations

I have a binary data file which contains two-byte integers, however the encoding of these integers (little-endian, big-endian, two's compliment, one's compliment, sign-and-magnitude, et cetera) is ...