Quiz Entry - updated: 2026.07.14
Contention-based vs controlled access — how do they decide who gets to transmit, and what is the trade-off?
Contention-based lets nodes compete and risk collisions; controlled access hands each node a guaranteed turn, so it is collision-free but adds overhead and waiting.
| Method | How a node gets to send | Trade-off |
|---|---|---|
| Contention-based | Nodes operate in half-duplex and compete for the medium (CSMA/CD, CSMA/CA) | Simple and efficient under light load, but collisions occur and performance drops as traffic rises |
| Controlled (deterministic) | Each node has its own scheduled time on the medium (e.g., Token Ring, ARCNET) | No collisions and predictable timing, but the turn-taking mechanism adds overhead and a node may wait even when the medium is idle |
Why it matters: Contention-based methods dominate modern shared media (Ethernet, Wi-Fi) because they are cheap and fast when collisions are rare; controlled access lingers only on legacy deterministic networks.
Go deeper:
Token passing (Wikipedia) — the controlled-access side: a token grants a deterministic turn, eliminating collisions but making every station wait — the overhead trade-off.
Carrier Sense Multiple Access (CSMA) (GeeksforGeeks) — the contention side: listen-before-talk, persistence modes, and why simultaneous sensing still causes collisions.