Top "Error-detection" questions

Cosmic Rays: what is the probability they will affect a program?

Once again I was in a design review, and encountered the claim that the probability of a particular scenario was "…

statistics physics probability error-detection risk-analysis
Hamming Code Error Detection

I have this code as given below for error checking by using hamming codes. I went through the algorithm on …

c algorithm error-detection
Finding hamming distance of code

A question asks: find the hamming distance of the following code: 11111 10101 01010 11100 00011 11001 The answer is 2. How does this work? I thought …

math error-detection hamming-distance
ASCII with odd parity

Consider a data communications system that represents characters using ASCII with odd parity. Each 7-bit ASCII character is followed by …

binary hex ascii error-detection parity
Software memory bit-flip detection for platforms without ECC

Most available desktop (cheap) x86 platforms now still nave no ECC memory support (Error Checking & Correction). But the rate …

memory linux-kernel error-detection
Is there a global approach to catch network errors in javascript

I'm researching the possibility of automated on-page error detection via Javascript. I have found several questions where the answer allows …

javascript error-detection
How can I encode 0000 to 11110 in 4B/5B encoding scheme

From the 4B/5B encoding scheme dataward 0000 in encoded to 11110 codeword similarly 0001 is encoded to 01001 etc. Here the result of …

networking encoding error-detection
Checking the error detection capabilities of CRC polynomials

I tried to find out how to calculate the error detection capabilities of arbitrary CRC polynomials. I know that there …

checksum crc polynomials hamming-distance error-detection