answersLogoWhite

0


Best Answer

1 1 1 1

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Binary equivalent of the decimal number 15?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the decimal equivalent of 00001111 in binary?

15


What is the hexadecimal equivalent of the binary number 1111 1111?

111111 in binary is 255 in decimal which is FF in hexadecimal (i.e. 15 units and 15 16s)


What is the decimal conversion of the binary number 1111?

The binary number 1111 = 15


What is the binary conversion of the decimal number 15?

15 = 1111


What is the binary values of the decimal number 15?

It is 1111.


Convert binary number 1111 to decimal?

1111 = 15


What will be the binary equivalent of the decimal number 9 to 16 by using the pattern of binary and decimal digit?

9: 1001 10: 1010 11: 1011 12: 1100 13: 1101 14: 1110 15: 1111 16: 10000


What is computer math?

computer maths are the operations of adding or subtracting binary, octal or hexadecimal numbers. These operations are normally carried out while programming in assembly language. A very simple subtraction example: Take a binary number of say 1111 (equivalent to 15 in decimal) minus 0010 (equivalent to 2 in decimal) results in 1101 (equivalent to 13 in decimal).


What is the binary represented by of 1111?

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


What does hexadecimal base 16 convert binary equal?

16 is the 4th power of 2. So a hexadecimal number is converted to binary by replacing each hex digit by the 4-bit binary number having the same value. Conversely, in converting binary to hexadecimal, we group every 4 bits starting at the decimal (binary?) point and replace it with the equivalent hex digit. For example, the hexadecimal number 3F9 in binary is 1111111001, because 3 in binary is 11, F (decimal 15) is 1111, and 9 is 1001.


What does 1111 in Binary code mean?

1111 in binary is 15 in decimal.


What is the binary equivalent of the decimal number 23?

To convert decimal to binary, divide the decimal number you want to convert by 2 and write down the remainder. Repeat this until the final result is zero. The remainders you wrote down, written from the last one you wrote to the first (so the opposite order from which you derived them) is the binary equivalent.So using this method with the number 23 we get:23/2 = 11 remainder 111/2 = 5 remainder 15/2 = 2 remainder 12/2 = 1 remainder 01/2 = 0 remainder 1So the binary equivalent is 10111