255. since number of 1's in "1111 1111" is 8 . we calculate decimal number as 2^8 = 256. starting from 0 to 255 .Hence the last(256th) number is 255.(sheetal)
General Purpose AnswerIn decimal numbers, the digits have values that are powers of ten. Starting at the implied decimal point and working to the left, the number 403 is equal to:3 x 100 + 0 x 101 + 4 x 102 = 3x1 + 0x10 + 4x100 = 3 + 0 + 400
In binary, the digits have values that are powers of two. Working to the left as before, the number 101 is equal to:
1 x 20 + 0 x 21 + 1 x 22 = 1x1 + 0x2+ 1x4 = (in decimal) 1 + 0 + 4 = 5
So, 1111 1111 = 1x1 + 1x2 + 1x4 + 1x8 + 1x16 + 1x32 + 1x64 + 1x128 = 255.
This also works to the right of the decimal point, but the powers of two are negative (i.e., fractions), so 101.011 in binary is:
1x1/8 + 1x1/4 + 0x1/2 + 1x1 + 0x2 + 1x4 = 5.375
Where the first digit to the right of the decimal point is 2-1 (one-half, or 1/2), the next is 2-2 (1/4), then 2-3 (1/8), etc.
Not sure I understand the logic behind the top answer. In this particular case, adding 1 to the original binary you get 1 0000 0000 which is 256, so take away the 1 again to get 255.
The binary number 1111 = 15
1111 = 15
It is 1111.
In binary: 1111 1111 1111 1111 1111 1111 1111 1111 In octal: 37777777777 In hexadecimal: FFFFFFFF in decimal: 2³² - 1 = 4,294,967,295
1111 or 00001111
The binary number 1111 = 15
15 = 1111
1111 = 15
1111 in binary is 15 in decimal. 1111 in decimal is 10001010111‬ in binary.
1111 1111 base 2
It is 1111.
1111 in binary is 15 in decimal.
1111 1111
All I know is that when a number is negative, you convert the decimal into binary and if it is negative you put 1111 before the binary digits.
111111 in binary is 255 in decimal which is FF in hexadecimal (i.e. 15 units and 15 16s)
In binary: 1111 1111 1111 1111 1111 1111 1111 1111 In octal: 37777777777 In hexadecimal: FFFFFFFF in decimal: 2³² - 1 = 4,294,967,295
The binary number 1111 is 15. The digits in a binary number are exponents of 2 rather than 10, so that for a four digit number in binary, the digit places represent 8, 4, 2, 1 instead of increasing values of 10. 1111 = 8+4+2+1 = 15