| DNA Code | 8 |
| Yuki | 4 |
| Modern Computers | 3 |
| Babylonians | 64 |
| Mayans | 5 |
| Cryptography | 20 |
| Yoruba | 2 |
| Islamic Prayers | 60 |
Ans: See the Binary and Hex Tutorial.
11111111 to 10000000 represent -1 to -128.
| Signed Binary | Decimal |
|---|---|
| 00000000 | 0 |
| 11111111 | -1 |
| 11111110 | -2 |
| 11111101 | -3 |
| 11111100 | -4 |
| 11111011 | -5 |
| 11111010 | -6 |
| 11111001 | -7 |
| 11111000 | -8 |
| 11110111 | -9 |
If x is an integer, -128 <= x <= -1, then x represented as a signed binary number is flip(|x|2) + 1.In the above, |x| means the absolute value of x and to find the flip of any binary number just reverse each bit of the number (i.e., if a bit is 0 make it 1 and if it's 1 make it 0).