Data Communication
Data Communication — Study Notes
NCERT-aligned · 10 notes · 3 shown free
11.1 CONCEPT OF COMMUNICATION
Concept11.1 CONCEPT OF COMMUNICATION
Data Communication is a term formed by combining 'Data' and 'Communication'. Data refers to any form of information such as text, images, audio, video, or multimedia files. Communication is the process of sending or receiving data. Therefore, data communication is the exchange of data between two or more networked or connected devices. These devices must be capable of sending and receiving data over a communication medium. Examples of such devices include personal computers, mobile phones, laptops, printers, servers, and switches. These devices are interconnected through a medium that carries information from one end to the other, forming a network. The network allows multiple devices to communicate and share data efficiently. This fundamental concept forms the basis of all modern digital communication systems and networks.
- Data can be text, image, audio, video, or multimedia files.
- Communication is the act of sending or receiving data.
- Data communication involves exchange of data between connected devices.
- Devices must be capable of sending and receiving data.
- Examples of devices include computers, printers, servers, switches, mobile phones.
- Devices are connected through a communication medium forming a network.
- 📌 Data: Any form of information such as text, images, audio, video, or multimedia files.
- 📌 Communication: The process of sending or receiving data.
- 📌 Data Communication: Exchange of data between two or more connected devices over a communication medium.
11.2 COMPONENTS OF DATA COMMUNICATION
Explanation11.2 COMPONENTS OF DATA COMMUNICATION
Data communication between two computing devices over a network involves five essential components: sender, receiver, communication medium, message, and protocols. The sender is the device that originates the data, such as a computer, mobile phone, smartwatch, or video recording device. The receiver is the device that receives the data, which can be a computer, printer, laptop, mobile phone, or television. Both sender and receiver are known as nodes in a network. The message is the actual data or information to be communicated, which can be text, numbers, images, audio, video, or multimedia. The communication medium, also called transmission medium or channel, is the physical or wireless path through which the message travels from sender to receiver. Examples include telephone cables, ethernet cables, satellite links, and microwaves. Protocols are a set of rules that the communicating parties must follow to ensure successful and reliable data communication. Protocols govern how data is formatted, transmitted, and received, and include standards like Ethernet and HTTP. Understanding these components is crucial for grasping how data communication functions in real-world networks.
- Sender: Device that sends data over the network.
- Receiver: Device that receives data from the network.
- Message: The data or information to be exchanged.
- Communication Medium: The path or channel through which data travels.
- Protocols: Rules that govern data communication for reliability and success.
- 📌 Sender: Originates data transmission.
- 📌 Receiver: Accepts data transmission.
- 📌 Message: Data to be communicated.
11.3 MEASURING CAPACITY OF COMMUNICATION MEDIA
Explanation11.3 MEASURING CAPACITY OF COMMUNICATION MEDIA
In data communication, the transmission medium or channel is the path through which data signals travel from the sender to the receiver. The capacity of a channel refers to the maximum amount of signals or traffic that the channel can carry. This cap
Practice Questions — Data Communication
Includes NCERT exercise questions with answers
Q1.What will be the output of the following Python code? def fun(list1): list1.pop() list1=[1,2,3] fun(list1) print(list1)
Answer:
[1,3]
Q2.Predict the output of the following code fragment: str1="CBSE" str2="cbse" res=str1<str2 print(res)
Answer:
True
Q3.pow() belongs to which library?
Answer:
math
Q4.What will be the output of following code? def ret(x,y): c=x+y res=ret(4,5) print(res)
Answer:
None
Q5.c = 1 # global variable def add(): c=30 print(c) add()
Answer:
30
Q6.1. A variable defined inside a function body is known as:
Answer:
Local variable
Q7.In Python, how are arguments passed?
Answer:
pass by reference
Q8.Parameters passed at the time of function invocation are known as:
Answer:
Actual parameter
All 13 Chapters in Computer Science
Computer Science · Class 12