. Find the excess-3 code of the given binary number (1 Pts.)

1010, 0100, 0001

1101, 1011, 0010

To find the excess-3 code of a given binary number, you need to add 3 to each digit of the binary number.

Let's go step by step for each given binary number:

1. For the binary number 1010:
- Add 3 to the first digit (1 + 3 = 4).
- Add 3 to the second digit (0 + 3 = 3).
- Add 3 to the third digit (1 + 3 = 4).
- Add 3 to the fourth digit (0 + 3 = 3).

Therefore, the excess-3 code for the binary number 1010 is 4333.

2. For the binary number 0100:
- Add 3 to the first digit (0 + 3 = 3).
- Add 3 to the second digit (1 + 3 = 4).
- Add 3 to the third digit (0 + 3 = 3).
- Add 3 to the fourth digit (0 + 3 = 3).

Therefore, the excess-3 code for the binary number 0100 is 3443.

3. For the binary number 0001:
- Add 3 to the first digit (0 + 3 = 3).
- Add 3 to the second digit (0 + 3 = 3).
- Add 3 to the third digit (0 + 3 = 3).
- Add 3 to the fourth digit (1 + 3 = 4).

Therefore, the excess-3 code for the binary number 0001 is 3334.