Class 12 Computer Science Chapter 11 Revision Summary Strictly NCERT

Revision Summary: Data Communication (NCERT Class 12)

1. Chapter at a Glance

  • Data communication is the exchange of data (text, image, audio, video, multimedia) between two or more networked or connected devices capable of sending/receiving over a communication medium.
  • Five essential components are required: sender, receiver, message, communication media (transmission media), and protocols.
  • Channel capacity is measured by bandwidth (range of frequencies in Hz) and data transfer rate (bits per second).
  • Data communication occurs in three modes: simplex (unidirectional), half-duplex (bidirectional but not simultaneous), and full-duplex (bidirectional and simultaneous).
  • Switching techniques provide temporary routes in networks: circuit switching (dedicated path established before transmission) and packet switching (message broken into packets routed independently).
  • Transmission media are classified as guided/wired (twisted pair, coaxial cable, optical fibre) or unguided/wireless (radio waves, microwaves, infrared waves).
  • Mobile telecommunication technologies evolved through generations (1G–5G) with increasing support for voice, data, and IoT.
  • Protocols are standard rules for reliable communication; key examples include HTTP, FTP, PPP, SMTP and TCP/IP.

2. Key Terms and Definitions

  • Data Communication: Exchange of data between two or more networked or connected devices over a communication medium.
  • Sender: A computer or device capable of sending data over a network (also called a node).
  • Receiver: A computer or device capable of receiving data from the network (also called a node).
  • Message: Data or information exchanged between sender and receiver (text, number, image, audio, video, multimedia).
  • Communication Media (Transmission Media): The path through which the message travels between source and destination; can be wired or wireless.
  • Protocols: Set of rules that communicating parties must follow for successful and reliable data communication.
  • Bandwidth: Range of frequencies available for transmission through a channel; measured in Hertz (Hz). Higher bandwidth allows higher data transfer rate.
  • Data Transfer Rate (Bit Rate): Number of bits transmitted between source and destination in one second; measured in bps, Kbps, Mbps, Gbps, Tbps.
  • Simplex Communication: One-way (unidirectional) communication where one device is sender and the other is receiver.
  • Half-duplex Communication: Two-way (bidirectional) communication where devices can send and receive but not at the same time.
  • Full-duplex Communication: Two-way (bidirectional) communication where both devices can send and receive simultaneously.
  • Circuit Switching: Dedicated path identified between sender and receiver before communication starts; all packets follow the same path.
  • Packet Switching: Message broken into smaller packets transmitted independently; packets may take different routes and are reassembled at destination.
  • Twisted Pair Cable: Two copper wires twisted together and insulated; minimises electrical interference; available as UTP and STP.
  • Coaxial Cable: Cable with copper core, insulating material, outer conductor (copper mesh) and plastic cover; offers higher bandwidth and shielding than twisted pair.
  • Optical Fibre Cable: Carries data as light signals through thin glass fibre with cladding; uses refraction; lightweight with high bandwidth but unidirectional and expensive.
  • Radio Waves: Electromagnetic waves (3 KHz–1 GHz); omni-directional; used in AM/FM radio, TV, cordless phones.
  • Microwaves: Electromagnetic waves (1 GHz–300 GHz); unidirectional; require line-of-sight; used in satellite and radar communication.
  • Infrared Waves: Electromagnetic waves (300 GHz–400 THz); cannot penetrate solid objects; used for short-distance communication (remote controls, Bluetooth).
  • Bluetooth: Short-range (up to 10 m) wireless technology operating at 2.4 GHz; forms piconet in master-slave configuration.
  • Wi-Fi (Wireless LAN 802.11): Wireless local area network using access points connected to a wired network.
  • HTTP (HyperText Transfer Protocol): Request-response protocol used to access the World Wide Web; runs over TCP.
  • FTP (File Transfer Protocol): Protocol for transferring files between machines using client-server model.
  • PPP (Point-to-Point Protocol): Protocol that establishes a dedicated direct connection between two devices with authentication.
  • SMTP (Simple Mail Transfer Protocol): Protocol used for email services; handles outgoing mail using message headers.
  • TCP/IP: Set of rules using client-server model; IP assigns addresses and routes packets; TCP breaks data into packets, guarantees delivery and ordering.

3. Syntax and Constructs

No programming syntax, functions, methods or commands are taught in this chapter.

4. Algorithms and Worked Logic

Example: Calculating required data transfer rate (from NCERT Example 11.1)
A user wants to upload a text document at 10 pages per 20 seconds. Assume 1 page = 1600 characters and each character = 8 bits.

Key steps: - Calculate total characters: 10 pages × 1600 characters = 16 000 characters. - Convert to bits: 16 000 × 8 = 128 000 bits. - Calculate rate: 128 000 bits ÷ 20 s = 6 400 bps.

Packet Switching Procedure (key steps as described): - Break message into smaller packets. - Each packet contains header (destination address) and data. - Packets are transmitted independently; different packets may take different routes. - Packets are reassembled at the destination to reconstruct the original message.

5. Common Errors and Exam Pitfalls

  • Confusing Mbps (megabits per second) with MBps (megabytes per second) — the chapter explicitly distinguishes them.
  • Mixing bandwidth units (Hz, KHz, MHz) or data rate units (bps, Kbps, Mbps, Gbps, Tbps) without correct powers of 2/10 conversion.
  • Stating that half-duplex allows simultaneous two-way communication (it does not; only full-duplex does).
  • Claiming optical fibre supports bidirectional communication with a single cable (it is unidirectional; two cables are needed for full-duplex).
  • Forgetting that in packet switching packets of the same message can follow different routes (unlike circuit switching).
  • Writing that radio waves are unidirectional (they are omni-directional) or that microwaves can penetrate walls (they cannot).
  • Missing that protocols handle flow control, access control, addressing, and ensuring data integrity.

A study aid reviewed by GFIS faculty — always verify with your textbook and teacher.