answersLogoWhite

0

It can be calculated via an XOR sum of the bits, yielding 0 for even parity and 1 for odd parity

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

Ic 74180 used for?

The 74180 is a 9-bit Odd/Even Parity Generator and Checker


What is difference between parity checker and parity generator?

A parity generator checks the data to be transmitted and outputs a 0(parity bit) if the number of logic 1's in the data is even, and a logic 0 if the number is odd. So a checker takes the transmitted data and the parity bit and will compare the two, and if they are both of the same logic then the you can conclude that the data was recieved succesfully(i.e no bits were lost during transmission). Parity checker/generator use the exact same devices, but with one comparing instead of generating.


What is a parity bit generator and checker?

Parity bit generator is the error that occures when digital codes are being transferred over channel from one point to other .


Short note on parity generator and checker?

devices and simulate the circuit using the VHDL codes.


How many xor gates required for 4 bit parity checker?

3*xor- two input


What are the Applications of XOR?

Exclusive OR gate has a variety of applications. Even parity generator. comparator. encoder etc.


Write a program to implement parity bit checker?

# include # define bool int/* Function to get parity of number n. It returns 1if n has odd parity, and returns 0 if n has evenparity */bool getParity(unsigned int n){bool parity = 0;while (n){parity = !parity;n = n & (n - 1);}return parity;}/* Driver program to test getParity() */int main(){unsigned int n = 7;printf("Parity of no %d = %s", n,(getParity(n)? "odd": "even"));getchar();return 0;}CODING BY:SONU BARNWAL CENTRAL UNIVERSITY OF BIHAR


Is parity used for servers?

Parity is an error detection method used to ensure integrity of DATA in Transmission or Storage applications. Parity Methods are used in Computing Machines whether it is a Server, Workstation or a Laptop.


What is a PR checker used for?

A PR Checker is also known as a Page Rank Checker. This tool is used to find the rank of any website. A PR Checker is frequently used by businesses who are trying to improve their visibility online.


What is the parity used by Microsoft for fault tolerance?

The parity used by Microsoft is Boolean (true/false, one/zero) logic.


What gate is called coincidence checker?

XNOR gate is a two input gate.And if two inputs are the same they are Known as the Coincidence gate.Electronics can be very interesting if you understand the fundamentals of it.


What is parity checking used for?

Parity checking is used as a way to ensure data integrity and prevent errors, or detect them in the event they are occuring.