Save
Comp science chapter 2.2 method of error detection
Save
Share
Learn
Content
Leaderboard
Share
Learn
Created by
Kapadia rayyan
Visit profile
Cards (18)
What is the risk associated with
data transmission
?
Data may be
corrupted
,
lost
, or
gained
.
View source
What are the main causes of errors during data transmission?
Interference
Problems during
packet switching
Skewing
of data
View source
What is
interference
in the context of data transmission?
Interference refers to
electrical
disruptions that can corrupt or lose data.
View source
How can
packet switching
lead to
data loss
?
Packet switching can lead to data loss or even
gain data
during transmission.
View source
What is
skewing
of data?
Skewing occurs during parallel
data transmission
when bits arrive out of synchronization.
View source
What are the methods of error detection and correction?
Checksums
Parity check
Automatic Repeat Requests (ARQ)
Check digit
View source
What is a
checksum
?
A checksum is a value used to verify if data has changed or been corrupted after
transmission
.
View source
Describe the
checksum
process.
Sender calculates checksum using an
algorithm
.
Checksum is transmitted with data.
Receiver recalculates checksum.
Checksum comparison determines if
errors
occurred.
View source
What is a
parity check
?
A parity check is a
method
to determine if data has been changed or corrupted during transmission.
View source
What are the two types of
parity
?
Even parity
Odd parity
View source
What does the
Most Significant Bit
(MSB) represent in
parity checks
?
The MSB is reserved for the
parity bit
.
View source
How do you determine the
parity bit
for the data
1101101
using
even parity
?
The parity bit is 0 to keep the number of 1s even.
View source
How do you determine the
parity bit
for the data
1101101
using
odd
parity?
The parity bit is 1 to make the number of 1s odd.
View source
What is a limitation of
parity checks
?
If two
bits
change value, it may be impossible to locate the
error
using parity checking.
View source
What is
Automatic Repeat Request
(
ARQ
)?
A method to check data after transmission.
Uses
positive/negative acknowledgements
and timeouts.
Ensures
data integrity
in mobile networks.
View source
How does
ARQ
ensure data integrity?
ARQ uses
error detection codes
and
acknowledgements
to confirm data integrity.
View source
What types of errors can
check digits
detect?
Transcription errors
Transposition errors
View source
Describe the steps to calculate a
check digit
for
ISBN-13
.
Sum
odd-numbered
digits.
Sum
even-numbered
digits and multiply by 3.
Add results and divide by 10.
Determine check digit based on
remainder
.
View source