Computer Science, asked by nsraakash, 5 months ago

x,y,z are inputs and p is the parity bit then what is the correct equation for parity checker​

Answers

Answered by varshapatil86
1

Answer:

xbeshstsyuaizbfau has the same name for the same

Answered by dreamrob
0

Even Parity Checker

If odd numbers of 1 :- Error

If even number of 1 :- No Error

X   Y   Z   P      E

0   0   0   0      0

0   0   0   1       1

0   0   1   0       1

0   0   1   1        0

0   1   0   0       1

0   1   0   1        0

0   1   1   0        0

0   1   1   1         1

1   0   0   0       1

1   0   0   1        0

1   0   1   0        0

1   0   1   1          1

1   1   0   0        0

1   1   0   1          1

1   1   1   0          1

1   1   1   1           0

Simplify by K-map.

Odd Parity Checker

If odd numbers of 1 :- No Error

If even number of 1 :- Error

X   Y   Z   P      E

0   0   0   0      1

0   0   0   1       0

0   0   1   0       0

0   0   1   1        1

0   1   0   0       0

0   1   0   1        1

0   1   1   0        1

0   1   1   1         0

1   0   0   0       0

1   0   0   1        1

1   0   1   0        1

1   0   1   1         0

1   1   0   0        1

1   1   0   1         0

1   1   1   0         0

1   1   1   1           1

Simplify by K-map.

Attachments:
Similar questions