Tagged Questions
The internal-representation tag has no wiki summary.
25
votes
10answers
7k views
Why is two's complement used to represent negative numbers?
I'm just curious if there's a reason why in order to represent -1 in binary, two's complement is used: flipping the bits and adding 1?
-1 is represented by 11111111 (two's complement) rather than (to ...
7
votes
3answers
241 views
How is a partial application represented at runtime?
When I write something like map (1+) list in Haskell, what is the internal representation of (1+)? Since it is a partial application of (+), the argument 1 has to be saved somewhere, but I can't get ...
5
votes
11answers
2k views
boolean true — positive 1 or negative 1?
I'm designing a language, and trying to decide whether true should be 0x01 or 0xff. Obviously all non-zero values will be converted to true, but I'm trying to decide on the exact internal ...
2
votes
7answers
430 views
int((0.1+0.7)*10) = 7 in several languages. How to prevent this?
Recently I came across a bug/feature in several languages. I have a very basic knowledge about how it's caused (and I'd like some detailed explanation), but when I think of all the bugs I must have ...
2
votes
1answer
646 views
What is the internal representation of datetime in sql server?
What is the underlying datastructure of datetime values stored in SQL Server (2000 and 2005 if different)? Ie down to the byte representation?
Presumably the default representation you get when you ...
0
votes
3answers
107 views
Subtraction of 2 negative integer (two's complement) never overflowing
I came across this in a computer architecture textbook:
Subtracting a strictly negative integer from another strictly negative integer (in two's complement) will never overflow.
The textbook ...
0
votes
4answers
60 views
How are timeouts represented in JavaScript?
When I call set timeout it returns a number, for example
> setTimeout(function(){ console.log('done'); },1000);
4431
"done"
I know that I can use this number to call clearTimeout() but what does ...