Quiz 4 Flashcards

(40 cards)

1
Q

What is the purpose of multiple access protocols?

A

To coordinate transmissions in shared media and avoid collisions.

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

What is multiplexing in networking?

A

Sharing a communication link among multiple users.

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

What does TDM stand for?

A

Time Division Multiplexing.

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

How does TDM work?

A

Divides time into slots, assigns each to a user.

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

What are pros of TDM?

A

Guaranteed bandwidth, no collisions, predictable performance.

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

What are cons of TDM?

A

Inefficient with unused slots, requires time synchronization.

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

What does FDM stand for?

A

Frequency Division Multiplexing.

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

How does FDM work?

A

Divides frequency band into channels assigned to users.

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

What are pros of FDM?

A

Continuous access, no timing sync, simple implementation.

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

What are cons of FDM?

A

Guard bands needed, inefficient with unused allocation.

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

How are TDM and FDM similar?

A

Both are static allocation schemes.

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

How are TDM and FDM different?

A

TDM slices time, FDM slices frequency.

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

What are the two types of access control?

A

Centralized and distributed.

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

What is centralized access control?

A

A scheduler picks who transmits and when.

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

What are pros of centralized control?

A

Fair, efficient, no collisions.

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

What are cons of centralized control?

A

Setup needed, single point of failure, overhead.

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

What is distributed access control?

A

Devices manage access themselves.

18
Q

What are pros of distributed control?

A

Simple setup, no central failure point, good under low load.

19
Q

What are cons of distributed control?

A

Scaling is hard, collisions can happen, bad under high load.

20
Q

How does ALOHA work?

A

Transmit immediately; retry after collision with random delay.

21
Q

What’s the difference between Pure and Slotted ALOHA?

A

Pure sends anytime, Slotted sends at time slot starts.

22
Q

What’s the max efficiency of Pure ALOHA?

23
Q

What’s the max efficiency of Slotted ALOHA?

24
Q

What is CSMA?

A

Carrier Sense Multiple Access — listen before you send.

25
How does CSMA reduce collisions?
By listening for a busy channel before sending.
26
Why can CSMA still have collisions?
Propagation delays.
27
What does CSMA/CD do?
Adds collision detection during transmission.
28
What happens in CSMA/CD if collision is detected?
Stop transmitting and back off.
29
Why is a minimum frame size required in CSMA/CD?
So collisions can be detected before transmission ends.
30
Why doesn't CSMA/CD work for wireless?
Can't trasmit and receive at the same time.
31
What is 1-persistent CSMA?
Transmit immediately (w/ prob of 1) if the channel is free.
32
What is non-persistent CSMA?
If the channel is busy, wait a random time before checking again.
33
What is p-persistent CSMA?
Transmit with probability p when channel is free.
34
What is Binary Exponential Backoff?
Algorithm that increases wait time exponentially after collisions.
35
How does BEB work after n collisions?
Pick random time from 0 to 2^n - 1 slot times.
36
What are pros of BEB?
Adaptive, fair, simple.
37
What are cons of BEB?
Delay can be long, possible capture effect.
38
Why are static methods bad for bursty traffic?
They waste bandwidth when not fully used.
39
How do modern networks improve access?
They combine centralized and distributed protocols (hybrid).
40
What is collision avoidance?
A method to prevent collisions, used in wireless networks.