Chapter 4 Flashcards

(35 cards)

1
Q

What does the data link layer do?

A

It controls message transmission over physical media, handling media access, message delineation, and error control.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is media access control?

A

Media access control determines when a message is sent, especially important in shared circuits to prevent collisions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

When is media access control unnecessary?

A

In point-to-point full duplex circuits, since both computers can transmit freely without interference.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is roll-call polling?

A

The front-end processor polls each terminal in sequence to see if it has data to send.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is hub polling (token passing)?

A

A poll is passed from one device to the next on a shared circuit; used in LANs.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is contention?

A

Devices transmit when the circuit is free; used in Ethernet networks.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Which is better: controlled access or contention?

A

Contention is better for low-volume networks; controlled access is better for high-volume networks.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What are the two fundamental types of errors?

A

Human errors and network errors (corrupted or lost data).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

When do errors usually occur?

A

In bursts — multiple bits are affected at once.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Do lower-speed lines have higher error rates?

A

Yes, due to less stable transmission conditions and unconditioned dial-up lines.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is noise?

A

Undesired electrical or light signals that interfere with data transmission.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is white noise (Gaussian)?

A

Thermal noise present in all circuits; usually not harmful unless very strong.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is impulse noise?

A

Spikes caused by voltage changes, lightning, or poor connections; major cause of data errors.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is cross-talk?

A

Signal interference from adjacent wires or circuits.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What are echoes?

A

Reflected signals from bad connections; can cause errors.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is attenuation?

A

Loss of signal strength over distance; can distort data transmission.

17
Q

What is intermodulation noise?

A

Combination of signals forming interference in another frequency band.

18
Q

What is jitter?

A

Minute variations in signal phase or amplitude that can distort transmission.

19
Q

What is harmonic distortion?

A

Output of a circuit doesn’t match its input, usually due to amplifier issues.

20
Q

What are phase hits?

A

Short-term shifts in signal phase, which may cause errors.

21
Q

How do amplifiers differ from repeaters?

A

Amplifiers boost analog signals (and noise); repeaters regenerate clean digital signals.

22
Q

Name three ways to reduce noise.

A

Shielding wires, separating cables from power sources, tuning/maintaining equipment.

23
Q

What is parity checking?

A

Adding a bit to each byte to make the number of 1s either even or odd; detects simple errors.

24
Q

How does checksum work?

A

Adds byte values in a message, divides by 255, and compares the remainder at both ends.

25
How does CRC (cyclical redundancy check) work?
Divides the message by a fixed number and appends the remainder for error checking.
26
What is forward error correction?
Redundant bits are added so that the receiver can detect and correct errors without retransmission.
27
When is forward error correction useful?
In satellite communication where delays and high error rates occur.
28
What is stop-and-wait ARQ?
Sender stops and waits for ACK/NAK before sending the next message; half-duplex.
29
What is continuous ARQ?
Sender continuously sends messages while monitoring ACKs/NAKs; full-duplex.
30
What is the simplest data link protocol?
SDLC, HDLC, or PPP (all relatively basic and similar in concept).
31
What does an SDLC frame look like?
Flag, address, control, message, and CRC fields.
32
What does an Ethernet frame include?
Destination, source, length, control info, message, and CRC-32 field.
33
What does a PPP frame include?
Flag, address, control, protocol, message, CRC, and another flag.
34
What is transmission efficiency?
Total user data bits divided by total bits sent (including overhead).
35
What is the difference between information and overhead bits?
Information bits convey the user's message; overhead bits help manage transmission (e.g., error checks).