Question: Internally in the computer, with few exceptions, all numerical computation is done using binary numbers. Input, however, often uses ASCII, which is formed by appending

Internally in the computer, with few exceptions, all numerical computation is done using binary numbers. Input, however, often uses ASCII, which is formed by appending 011 to the left of a BCD code. Thus, an algorithm that directly converts a BCD integer to a binary integer is very useful. Here is one such algorithm.

1) Draw lines between the 4bit decades in the BCD number

2) Move the BCD number one bit to the right.

3) Subtract 011 from each BCD decade containing a binary value > 0111.

4) Repeat Steps 23 until the leftmost 1 in the BCD number has been moved out of the least significant decade position.

5) Read the binary result to the right of the least significant decade position

a) Execute the algorithm for the BCD number 0111 0101. b) Execute the algorithm for the BCD number 0011 0110 1000.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!