answersLogoWhite

0

22.2

since we take 4 bits to convert in decimal and bit value can not exceed 0-9.so we divide 11011 as 0001 and 1011 . here we have 0001 as 1 but 1011 have value 11 so first we substract 6 from second part 1011-0110 so we will get 0101 which is equivalent to 5. now before decimal we have 15 ,since we substract 6 from this we need to add 6 so value became 15+6=21 .Same process we will do after decimal point and we will get .6 after decimal point so when we will add .6 here we will have 21.6+.6=22.2

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What is decimal equivalent of BCD 11011.1100?

22.2


What is the BCD equivalent for a decimal number 163?

It is 0001 0110 0011.


10 in BCD code is representd as?

The decimal number 10, represented in BCD is 0001 0000. If, instead, you mean that you have 10 in BCD and want to know what that means, that is equivalent to 0000 0010 and would be 2 in decimal.


What is the highest number in BCD?

In Binary-Coded Decimal (BCD), each decimal digit is represented by its own four-bit binary equivalent. Since the highest decimal digit is 9, the highest number in BCD corresponds to the decimal number 9, which is represented in BCD as 1001. Thus, the highest BCD representation for a single digit is 1001. For multiple digits, the highest number would be 999, represented in BCD as 1001 1001 1001.


How do you convert BCD to decimal?

explain decimal to BCD encoder


How do you explain Decimal to BCD encoder?

explain decimal to BCD encoder


What is deference between BCD and decimal number?

BCD is a decimal number. BCD is one specific way to store decimal numbers in computer memory.


How do you find 47 in BCD?

To represent the decimal number 47 in Binary-Coded Decimal (BCD), you first separate the digits: 4 and 7. In BCD, each digit is represented by its 4-bit binary equivalent. Therefore, 4 is represented as 0100 and 7 as 0111. Combining these, 47 in BCD is expressed as 0100 0111.


What is the BCD representation of the decimal number 41 in 6-bit?

41 in decimal is 0100 0001 in BCD (this is 8 bits not 6 bits)41 in decimal is 101001 in binary (this is 6 bits, but binary not BCD)There is no 6 bit BCD representation of the decimal number 41!


represent decimal number 862 a) BCD?

BCD of 862 is 100001100010


Why BCD is weighted code?

Binary-Coded Decimal (BCD) is considered a weighted code because each digit in a decimal number is represented by its own binary equivalent, with each position having a specific weight based on its decimal place. In BCD, the weights are assigned as powers of two, corresponding to the decimal digits (0-9), allowing for straightforward conversion between the two systems. This structure enables easy decimal calculations and human readability, making BCD suitable for applications like calculators and digital displays.


How do you generate BCD output?

BCD (Binary Coded Decimal) output can be generated using decimal-to-BCD conversion algorithms. One common method involves dividing the decimal number by 10 and storing the remainder as the Binary Coded Decimal digit. This process is repeated until all decimal digits are converted into BCD form. Alternatively, some microcontrollers have built-in instructions to directly convert decimal numbers to BCD format.