Instiq
Chapter 3 · Technology·v1.0.0·Updated 7/16/2026·~13 min

What's changed: Initial version

3.10Networks (TCP/IP, IP Addresses, Wireless LAN, and Communication Speed)

Key points

Learn about LAN, which connects a limited area, and WAN, which connects wide areas; TCP/IP, the standard protocol suite of the internet; IP addresses that identify devices; DNS for name resolution; DHCP, which automatically assigns IP addresses; communication devices such as routers and hubs; cable-free wireless LAN; SMTP/POP/IMAP used for sending and receiving email; and calculating communication speed.

Sharing files in a company office, or connecting to the internet from home to browse the web—both are possible because of the networking mechanisms that connect multiple computers. This section covers networking fundamentals end to end: the familiar distinction between LAN and WAN, TCP/IP as the foundation of internet communication, IP addresses that identify devices, and the frequently tested topic of calculating communication speed.

3.10.1LAN/WAN, TCP/IP, and communication devices

  • LAN (Local Area Network) connects devices within a limited area, such as an office or home. WAN (Wide Area Network) connects geographically separated sites using a carrier's network lines (the internet is a type of WAN).
  • TCP/IP is the standard set of communication protocols used on the internet. Devices from different manufacturers can communicate as long as they follow the same common rules. A router is a device that relays traffic between different networks (e.g., connecting a home LAN to the internet). A hub is a device that connects multiple devices within the same LAN.

3.10.2IP addresses, DNS, DHCP, wireless LAN, and email

  • An IP address is an address-like number that identifies a device on the network (e.g., 192.168.1.1). DNS (Domain Name System) is the name-resolution mechanism that maps human-friendly domain names (www.example.com, etc.) to IP addresses. DHCP automatically assigns an IP address when a device connects to a network, saving the trouble of manual configuration.
  • Wireless LAN (Wi-Fi) connects to a LAN over radio waves without cables. Browsing the web uses HTTP/HTTPS; sending email uses SMTP; receiving email from a mail server uses POP (downloads to the device and generally deletes it from the server) or IMAP (manages mail on the server, letting multiple devices see the same state).
  • Communication speed calculation finds transfer time from a line's theoretical speed (bps, bits per second), the file size (in bytes), and transmission efficiency. The keys are remembering that 1 byte = 8 bits, and that effective speed = theoretical speed x transmission efficiency.
Exam point

The staples: LAN spans a limited area, WAN spans a wide area; a router relays between different networks, a hub connects devices within the same LAN; DNS translates between domain names and IP addresses, DHCP auto-assigns IP addresses; SMTP sends, POP/IMAP receive. For communication speed calculations, the biggest pitfall is forgetting the 1 byte = 8 bit unit conversion or forgetting to multiply by transmission efficiency.

Consider the network setup of a newly opened cafe to see how the pieces connect. Inside the shop, several POS registers and tablets form a LAN, connected via a hub (or switch), while a router sits at the internet gateway, relaying to the WAN that is the internet. Each device is assigned an IP address automatically via DHCP, sparing staff the trouble of manual configuration. When a customer connects to the shop's wireless LAN (Wi-Fi) and browses a website, the browser queries a DNS server for the IP address corresponding to a domain name like www.example.com, then communicates with that IP address following TCP/IP rules. A reservation-confirmation email is sent to the mail server via SMTP, and the shop's device retrieves it from the server via POP or IMAP (if multiple staff members want to check the same mail status from their own phones rather than sharing one device, IMAP, which keeps state on the server, is the better fit). Now consider downloading 200 megabytes of data from the shop's cloud inventory system. If the line's theoretical speed is 100 Mbps and transmission efficiency is 80%, the effective speed is 100 Mbps x 0.8 = 80 Mbps. Since 200 megabytes (MB), multiplied by 8, becomes 1600 megabits (Mb), the transfer time works out to roughly 1600 Mb / 80 Mbps = 20 seconds. Forgetting the byte-to-bit conversion throws the answer off by a factor of 8, making it the easiest mistake in this type of calculation problem.

TermRoleExample
RouterRelays between different networksConnecting a LAN to the internet
HubConnects devices within the same LANConsolidating wiring for multiple PCs
DNSTranslates between domain names and IP addresseswww.example.com -> IP address
DHCPAuto-assigns IP addressesAutomatic configuration on connect
Warning

Trap: "A hub is a device that relays between different networks" is wrong—that is the role of a router; a hub only connects devices within the same LAN. Also, "SMTP alone handles both sending and receiving email" is wrong—there is a division of roles: SMTP sends; POP or IMAP receives. For speed calculations, "a 200 MB file can be calculated as 200 Mbit" is also wrong: since 1 byte = 8 bits, 200 MB is 1600 Mbit, and forgetting this conversion throws the result off by a factor of 8.

Network: LAN/WAN, TCP/IP, web/mail.
Deliver by IP; resolve names by DNS

3.10.3Section summary

  • LAN = limited area; WAN = wide area. Router = relays between different networks; hub = connects devices within the same LAN
  • DNS = translates domain names and IP addresses; DHCP = auto-assigns IP addresses. Wireless LAN connects without cables
  • SMTP = sending; POP/IMAP = receiving. For speed calculations, remember the 1 byte = 8 bit conversion and multiplying by transmission efficiency

Sign in to track progress — Log in.

Quick check

(just a quick review)

Q1. Which device connects a home LAN to the internet (WAN) and relays traffic between the two different networks?

Q2. Which mechanism resolves the IP address to connect to from a domain name (www.example.com) typed into a browser?

Q3. On a line with a theoretical speed of 50 Mbps and transmission efficiency of 80%, roughly how long does it take to transfer an 80-megabyte (MB) file? (Assume 1 byte = 8 bits.)

Check your understandingPractice questions for Chapter 3: Technology