edited by
10,489 views

5 Answers

Best answer
13 13 votes

The Excess-3(XS3) code for a given decimal number is determined by adding '3' to each decimal digit in the given number and then replacing each digit of the newly found decimal number by its four bit binary equivalent. The table gives is the Excess-3 code. For example, XS3 code of 24 is obtained as

  2       4

+3    +3

  5       7

0101 0111

Thus, XS3 code of 24 is 0101 0111.

The key feature of the Excess-3 code is .that it is self complementing. In other words, the 1's complement of an Excess- 3 number is the Excess- 3 code for the 9's complement of the corresponding decimal number.

 

 For example, the Excess- 3 code for decimal 6 is 1001. The 1's complement of 1001 is 0110, which is the Excess-3 code for decimal 3, and 3 is the 9's complement of 6. This property of Excess-3 code makes it useful in some arithmetic operations.

 

Hence,Option(C)Self-complimenting Code is the correct choice.

selected by
1 1 vote
Excess-3 code = BCD(1248) + 0011

After this we see that BCD(1248) is not Self Complementing code BUT Excess-3 code is Self Complementing code as well as Sequential code also.

Hence ans is (C) Self-Complementing Code
1 1 vote

Excess-3 Code is also called

  • XS-3 code
  • Self-complimenting code

Option C


It is also non-weighted code, ie, the bit position doesn't play a role in determining the value. Other non-weighted codes: Gray Code.

Gray code is also called Reflected binary code, and it's considered a minimum error code.

Answer:
Position:
Show:

Related questions

14 14 votes
4 answers 4 answers
11.7k
11.7k views
Arjun asked Jul 6, 2016
11,654 views
The logic circuit given below converts a binary code $Y_1Y_2Y_3$ into Excess-$3$ codeGray code$\text{BCD}$ codeHamming code
8 8 votes
3 answers 3 answers
8.5k
8.5k views
ajit asked Sep 20, 2015
8,526 views
Which of the following is termed as minimum error code ?Binary codeGray codeExcess-$3$ codeOctal code
129 129 votes
11 answers 11 answers
32.7k
32.7k views
Rucha Shelke asked Sep 26, 2014
32,685 views
Consider numbers represented in 4-bit Gray code. Let $ h_{3}h_{2}h_{1}h_{0}$ be the Gray code representation of a number $n$ and let $ g_{3}g_{2}g_{1}g_{0}$ be the Gray...
1 1 vote
1 1 answer
79
79 views
TryhardGuy asked Jun 21
79 views
For weighted decimal codes, is it guarantted for a decimal digit to have a unqiue code or representation in binary? If the weights assigned to places can be arbitrary, is...