answersLogoWhite

0


Best Answer

It is decimal 35.

User Avatar

Wiki User

7y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the binary coded decimal equivalent of 0010 0011?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the binary coded decimal of 234?

234 in BCD is 0010 0011 0100


What is the BCD equivalent for a decimal number 325?

Decimal: 3 2 5 Binary: 0011 0010 0101 so 325 = 0011 0010 0101


What are the binary coded numbers of 32?

32 in binary is 10 0000 32 in BCD (Binary Coded Decimal) is 0011 0010


What is 00110010 binary to decimal conversion?

0010=2 0011=48 0011 0010=50


What is the binary number 0011 0010 in decimal?

26


What is the difference between binary codes and bcd codes?

In BCD each digit of a decimal number is coded as a separate 4 bit binary number between 0 and 9.For example:Decimal 12 in BCD is shown as 0001 0010 (Binary 1 and Binary 2), in Binary it is 1100.


What is the binary code for 2?

Binary for the decimal number 2 is 10 (or 0000 0010 if you want it as a byte value) ASCII code for the decimal number 2 is 50 (Dec), 34 (Hex), 062 (Oct), 0011 0010 (Bin)


What is a number system in which each decimal digit is coded individually into binary?

BCD, which stands for Binary Coded Decimal. 4 bits are used to code each decimal digit. So we have 0000 for zero, up to 0111 for seven, then 1000 for eight and 1001 for nine. The others {ten through fifteen} are not used, as those numbers are formed from additional decimal digits. So if you wanted to form twelve, in BCD it is 0001 0010, for 12{base ten}


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).


Convert decimal 300 to binary notation for 16-bit integer?

300 = 256 + 32 + 8 + 4 = Binary 0000 0001 0010 1100


Why does binary number 11010010 have the decimal number 82?

It doesn't. 82 base 10 = 101 0010 base 2


Explain binary coded decimal?

Binary Coded Decimal (BCD) is a set of coding systems for storing decimal digits in binary code. There are several such codes, I will give examples of 3: straight BCD, XS3 BCD, and 2 of 5 BCD. Straight BCD uses the actual binary value of the decimal digit value: 0 = 0000 1 = 0001 2 = 0010 3 = 0011 4 = 0100 5 = 0101 6 = 0110 7 = 0111 8 = 1000 9 = 1001 XS3 BCD adds 3 to the binary value of the decimal digit value to make the code: 0 = 0011 1 = 0100 2 = 0101 3 = 0110 4 = 0111 5 = 1000 6 = 1001 7 = 1010 8 = 1011 9 = 1100 2 of 5 BCD uses a 5 bit code where only 2 bits can be on in a decimal digit's code: 0 = 00011 1 = 11000 2 = 10100 3 = 10010 4 = 10001 5 = 01100 6 = 01010 7 = 01001 8 = 00110 9 = 00101