Which of the following remarks about BDC is true ? 1. it is an 8-4-2-1 weight code 2. complement of a number can be found efficiently 3. (12345678)10 needs 4 bytes in BCD representation 4. conversion to and from the decimal system can be easily done
Design binary to gray code converter
Latest Answer : It is easy to convert the binary number to gray number. First, for example take a binary number i.e ,101101.
Step 1: 101101 first write the MSB as it is i.e, darken bit i.e, 1
Step 2: add MSB and bit next to the MSB i.e, 1+0=1
Step 3: again add 0 ...
Design 8421 to 2421 binary code converter
What is a BCD? What are its advantages and disadvantages? Why is an excess-3 code is called an unweighted code?
Design gray to binary code converter?