Data Transmission Chapter 2
Data Transmission Chapter 2
Activity 2.1
i. Potential problems:
ii. Causes:
The web page is broken into small packets, each containing a portion of the data.
Each packet is assigned a sequence number and routed independently through the network.
Packets may take different routes based on network conditions.
Once all packets reach the destination, they are reassembled in the correct order using sequence
numbers.
Any missing packets are requested again from the source.
CRC is a form of error-checking that involves adding a checksum value (calculated using polynomial
division) to the trailer of the packet.
The receiving device re-computes the checksum using the same polynomial and compares it with the
received checksum.
If the two values match, the data is error-free; otherwise, errors are detected.
b. Verifying Payload:
Payload data: 11110000 10000011 00110011 00111111 11111110 11100011
Apply the CRC polynomial to the data at both sending and receiving ends.
Ensure the computed CRC value at the receiver matches the transmitted CRC in the trailer.
Packets take independent routes, making it harder for attackers to intercept the full data stream.
Data is fragmented into small packets, reducing the risk of full data exposure if intercepted.
Encryption can be applied to packets individually, adding another layer of security.
Activity 2.2
1. Definitions
Serial, simplex.
Parallel, simplex.
Parallel, full-duplex.
Serial, full-duplex.
Parallel, simplex.
Activity 2.3
Activity 2.4
Activity 2.5
1. Checking Received Bytes for Errors:
0 1 0 0 1 1 1 1 (Even parity):
An additional 1 bit was introduced; likely, the 4th bit was flipped.
0 0 1 1 1 0 0 0 (Even parity):
A 1 bit was added or flipped; likely the 6th bit was changed.
1 1 1 1 0 1 0 0 (Odd parity):
A 1 bit was removed or changed; likely the 7th bit.
1 1 0 1 1 0 1 1 (Odd parity):
A 1 bit was added; likely the 3rd bit was changed.
1 1 1 1 1 1 1 1 (Odd parity):
All bits are 1, suggesting a single bit was altered; likely the 8th bit.
Activity 2.6
Activity 2.7
Activity 2.8
Activity 2.9
Exam Style Question