Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Transmission mode
Communication is defined as the transfer or sharing of data between any two individuals through a medium and the medium can be wired or wireless. In a computer network, the OSI (Open System Interconnection) model has seven layers for the communication networks. The first layer of OSI is the Physical layer that uses the Transmission mode for transferring the raw data to other devices using a physical medium.
Transmission mode refers to the process of transferring data from one point to another over a particular network. The channel between the two devices can be buses or networks, and communication occurs through optical fiber cables, wireless communication, or copper wired channels using electromagnetic waves.
Components Needed for Transmission
There are five essential components required during data transmission:
-
Raw data The information that needs to be transferred between devices
-
Sender The device that transmits the raw data
-
Receiver The device that receives the transmitted data
-
Transmission medium The physical or wireless channel connecting sender and receiver
-
Protocol The set of rules governing the transmission process
Types of Transmission Modes Based on Direction
Transmission modes are classified into three types based on the direction of data flow:
Simplex Mode
In simplex mode, data flows in only one direction from sender to receiver. The sender transmits data without receiving any acknowledgment, making it a unidirectional communication channel.
Examples: Television broadcasting, radio transmission, keyboard input to computer, and mouse movement to monitor display.
Half Duplex Mode
Half duplex allows bidirectional communication, but not simultaneously. Only one device can transmit at a time while the other waits, then roles can reverse.
Examples: Walkie-talkies, USB 2.0 connections, and traditional Ethernet hubs where collision detection prevents simultaneous transmission.
Full Duplex Mode
Full duplex enables simultaneous bidirectional communication. Both devices can send and receive data at the same time without interference, providing the highest efficiency.
Examples: Telephone conversations, modern Ethernet switches, and DSL modems that can upload and download simultaneously.
Types of Transmission Modes Based on Synchronization
Synchronous Transmission
Data is transmitted in continuous blocks without start and stop bits. The sender and receiver maintain synchronized timing through clock signals, making it efficient for high-speed communication.
Asynchronous Transmission
Data is transmitted character by character with start and stop bits framing each character. This method doesn't require synchronized clocks but has overhead due to control bits.
Comparison of Transmission Modes
| Mode | Direction | Efficiency | Complexity | Use Case |
|---|---|---|---|---|
| Simplex | One-way | Moderate | Low | Broadcasting |
| Half Duplex | Two-way alternating | Good | Medium | Walkie-talkies |
| Full Duplex | Two-way simultaneous | Highest | High | Phone calls |
Conclusion
Transmission modes define how data flows between communicating devices. Full duplex provides the highest performance with simultaneous bidirectional communication, while simplex and half duplex serve specific applications where unidirectional or alternating communication is sufficient.
