answersLogoWhite

0

10001010111

you get this by:

each digit in a binary number is a power of 2 kind of like in the number '100' you have your 1's column, your 10's and your 100's

2^10 2^9 2^8 2^7 2^6 2^5 2^4 2^3 2^2 2^1 2^0

1024 512 256 128 64 32 16 8 4 2 1

the highest power of 2 that can go into 1111 is 2^10 which is 1024 so you go from the highest column and write a 1

1

now 1111-1024 gives you 87 left over

the next highest that can go into 87 is 64 or 2^6

so you write a '0' under any number that doesn't match and a 1 under the 64 and you get

1024 512 256 128 64 32 16 8 4 2 1

1--------0----0----0---1

87-64 gives you 23

so do the same thing and you get:

1024 512 256 128 64 32 16 8 4 2 1

1--------0----0----0---1--0 --1

23-16 = 7 so

1024 512 256 128 64 32 16 8 4 2 1

1--------0 ---0---- 0 -1 - 0 --1 0 1

7-4=3

1024 512 256 128 64 32 16 8 4 2 1

1---------0---0-----0--1--0---1-0 1 1

3-2=1

1024 512 256 128 64 32 16 8 4 2 1

1 -------0 ----0 ---0 --1- 0 --1- 0 1 1 1

end result: 10001010111

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What does 1111 in Binary code mean?

1111 in binary is 15 in decimal.


What letter does the binary code 0100 1111 represent?

The binary code 0100 1111 represents the letter "O" in the ASCII character encoding system. Each group of eight bits corresponds to a specific character, and in this case, the binary value translates to the decimal number 79, which corresponds to "O".


What is the binary represented by of 1111?

1111 in binary is 15 in decimal. 1111 in decimal is 10001010111‬ in binary.


What is the value of 10100-1111 in binary number system?

Oh, dude, let's break it down. So, in binary, 10100 minus 1111 is like doing basic subtraction, but with 1s and 0s. When you subtract 1111 from 10100, you get 1001. So, the value of 10100 minus 1111 in binary is 1001. Easy peasy, right?


What is the maximum decimal value of a nybble?

A nybble consists of 4 bits, which can represent values from 0000 to 1111 in binary. The maximum decimal value of a nybble is therefore 1111 in binary, which equals 15 in decimal.


What is 0x00F8 in binary numbers?

0000 0000 1111 1000F ( or 15) = 1111 in binary, and 8 = 1000 in binary, so F is 1111 1000


What is the decimal conversion of the binary number 1111?

The binary number 1111 = 15


What is the binary equivalent of the decimal number255?

1111 1111


Convert binary number 1111 to decimal?

1111 = 15


What is binary for 15?

1111


What is binary for 16?

1111


What is the largest 32-bit binary number that can be represented with unsigned numbers?

In binary: 1111 1111 1111 1111 1111 1111 1111 1111 In octal: 37777777777 In hexadecimal: FFFFFFFF in decimal: 2³² - 1 = 4,294,967,295