Tagged Questions

6
votes
6answers
6k views

Why byte b = (byte) 0xFF is equals to integer -1?

Why byte b = (byte) 0xFF is equal to integer -1? Ex: int value = byte b = (byte) 0xFF; System.out.println(value); it will print -1?
2
votes
2answers
108 views

How to add and subtract 16 bit floating point half precision numbers?

How do I add and subtract 16 bit floating point half precision numbers? Say I need to add or subtract: 1 10000 0000000000 1 01111 1111100000 2’s complement form.
1
vote
0answers
72 views

why is it called two's complement? [closed]

Possible Duplicate: two's complement, why the name “two” why is using a sign bit so to represent negative numbers is call "2's complement"? How did such name come about, can ...