Show understanding of bit streaming
2.1 Networks Including the Internet
What is a Network?
A network is a group of connected devices that can share data with each other. Think of it like a city’s road system: cars (data) travel between houses (devices) using roads (cables or wireless).
- Local Area Network (LAN) – small, like a school or home.
- Wide Area Network (WAN) – big, like the Internet.
- Wireless vs. Wired connections.
Bit Streaming Explained
Data is broken down into tiny units called bits – the smallest unit of information, represented as 0 or 1. Bit streaming is the process of sending these bits one after another over a network.
Analogy: Imagine a line of dominoes. Each domino represents a bit. When you push the first domino, it knocks over the next, and so on. The line of falling dominoes is like a stream of bits travelling from sender to receiver.
- Data is converted into a binary string.
- Bits are grouped into frames (e.g., 8 bits = 1 byte).
- Frames are transmitted over the network.
- Receiver reassembles frames back into the original data.
Mathematically, a byte is $2^8 = 256$ possible values, ranging from $00000000_2$ to $11111111_2$.
The Internet: A Global Bit Highway
The Internet is a massive network of networks. It uses the TCP/IP protocol suite to ensure reliable data transfer.
| Layer | Purpose |
|---|---|
| Application | User-facing services (HTTP, FTP). |
| Transport | Ensures data arrives correctly (TCP) or quickly (UDP). |
| Internet | Routes packets using IP addresses. |
| Link | Physical transmission (Ethernet, Wi‑Fi). |
Each layer adds its own header to the data, much like adding envelopes and stamps to a letter.
Exam Tip: Bit Streaming
When asked to explain bit streaming, remember the four key steps:
- Conversion to binary.
- Grouping into frames.
- Transmission over the network.
- Reassembly at the destination.
Use the domino analogy to illustrate the flow of bits. Also, be ready to explain why error detection (checksums) is important.
Revision
Log in to practice.