Siksha Sarovar

Siksha Sarovar (sikshasarovar.com) is a free educational web application that helps students in India learn programming and prepare for academic and competitive exams. The platform offers structured coding courses (C, C++, Python, Java, HTML, CSS, PHP, Power BI, AI, Machine Learning, Data Science), complete university curriculum notes for BCA/MCA students with previous year question papers, Class 10 and Class 12 CBSE/HBSE school notes, and dedicated preparation material for SSC, UPSC, Banking, Railway and other government exams. Browsing the site is completely free and requires no account. Users may optionally sign in with Google solely to save their learning progress, quiz scores and personal preferences across devices.

Privacy Policy | Terms of Service | Contact Siksha Sarovar | About Siksha Sarovar

v4.0.9 · PWA
Siksha Sarovar logo
Siksha Sarovar
Your Learning Universe

Siksha Sarovar is a free e-learning platform for coding courses, BCA university notes and competitive exam preparation. Optional Google sign-in saves your learning progress across devices.

Initializing knowledge base…
Compiling modules 0%

Unit I — Data Communication Basics & Topologies

Lesson 2 of 15 in the free Computer Networks notes on Siksha Sarovar, written by Rohit Jangra.

Unit I — Data Communication Basics & Network Topologies

Data communication is the exchange of data between two devices via a transmission medium. Effective data communication must satisfy four characteristics: delivery (to the correct destination), accuracy (error-free), timeliness (within acceptable delay), and jitter (consistent delay variation for multimedia streams).

---

1. Five Components of Data Communication

ComponentRoleExample
MessageThe data or information being communicatedText, audio, video, image, binary file
SenderThe device that originates the messageComputer, telephone, camera, IoT sensor
ReceiverThe device that receives the messageComputer, printer, speaker, smart display
Transmission MediumPhysical path from sender to receiverCopper wire, fibre optic cable, air (Wi-Fi)
ProtocolRules governing how communication takes placeTCP/IP, HTTP, IEEE 802.11, Bluetooth
Exam Tip: These five components appear in 2–3 mark questions every year. Mnemonic: "Many Students Read Material Patiently" — Message, Sender, Receiver, Medium, Protocol.

---

2. Data Flow (Transmission) Modes

ModeDirection of FlowExample Use Case
SimplexOne direction only; receiver cannot transmit backKeyboard → CPU, TV broadcast, sensor to server
Half-DuplexBoth directions, but not at the same timeWalkie-talkie, CB radio, older WLAN
Full-DuplexBoth directions simultaneouslyTelephone call, modern Ethernet, video call

---

3. Line Configuration

  • Point-to-Point: A dedicated link connects exactly two devices. Full bandwidth is available to both devices. Higher security (no eavesdropping from other nodes). Example: leased-line WAN link between two offices.
  • Multipoint (Multi-drop): A single link is shared by three or more devices. All devices share the same bandwidth. Channel access protocols (CSMA/CD, token-passing, polling) manage transmission order. Example: coaxial bus LAN.

---

4. Network Topologies

TopologyShapeAdvantagesDisadvantagesExample Use
BusSingle linear backbone; all nodes connect to itLow cost, simple installation, less cableCable fault stops entire network; collision-prone; hard to troubleshootEarly Ethernet 10Base2, coaxial LANs
StarCentral hub/switch; each node has its own linkFault isolation (one link fails, others work); easy to add nodes; simple managementCentral device failure stops all communication; more cable requiredModern office LANs, home Wi-Fi
RingNodes connected in a closed loopEqual access; predictable performance; no collisions with token passingSingle ring break can stop network; difficult to add/remove devicesFDDI, Token Ring, SONET rings
MeshEvery node directly connected to every other nodeHighest fault tolerance; dedicated paths; no single point of failureVery expensive: n(n-1)/2 connections for n nodes; complex installation and managementWAN backbone, military networks
HybridCombination of two or more topologiesFlexible, scalable, optimised for different areasComplex design and managementEnterprise networks (Star-Bus, Star-Ring)

Study Deep: Topology Selection Factors

  • Bus was the original Ethernet topology (10Base2) but is obsolete. A single cable cut stops the entire network, making troubleshooting time-consuming.
  • Star dominates today because switches provide fault isolation — only the device with the broken link is affected. Adding or removing nodes requires no network downtime.
  • Mesh is used in WANs because redundant paths prevent any single link failure from disrupting traffic. The internet backbone is a partial mesh.
  • Ring topology uses a circulating token (Token Ring, FDDI) to eliminate collisions. Dual ring (FDDI) provides fault tolerance: if one ring breaks, traffic routes on the other.
  • Hybrid topologies are standard in practice. A campus network is typically Star-Bus: departments use star topology (switches), connected by a high-speed backbone (ring or bus).

---

5. Distributed Processing

Distributed processing splits computing tasks across multiple computers:

  • Security: Data can remain at the local site; central server breach does not expose everything
  • Reliability: Failure of one node does not stop the whole system
  • Efficiency: Users access local resources quickly, reducing wide-area traffic
  • Scalability: New nodes can be added without redesigning the whole infrastructure

---

6. Categories of Networks

CategoryFull NameCoverage AreaSpeedExample
PANPersonal Area Network~10 metresModerateBluetooth headset, smartwatch, USB
LANLocal Area NetworkBuilding or campus1–100 GbpsOffice Ethernet, home Wi-Fi
MANMetropolitan Area NetworkCity / metro area10 Mbps–10 GbpsCable TV network, city Wi-Fi mesh
WANWide Area NetworkCountry / globalVariesInternet, private leased lines
Exam Tip: Know the distinguishing characteristic of each network type: PAN (Bluetooth/personal devices), LAN (high speed, private, building), MAN (city-scale), WAN (global/internet). The internet is the world's largest WAN.

---

Study Deep: Internet, Intranet, and Extranet

  • Internet: The global public network of networks, using TCP/IP protocols. No single owner or central authority.
  • Intranet: A private internal network using internet protocols (HTTP, DNS, SMTP) but accessible only to organisation members. Examples: company internal websites, SharePoint portals.
  • Extranet: An intranet that allows controlled access to authorised external users (partners, customers, suppliers). Usually secured using VPN tunnels or dedicated links.