NCERTCh 11Free

Data Communication

🎓 Class 12📖 Computer Science📖 10 notes🧠 15 Q&A⏱️ ~15 min

Data CommunicationStudy Notes

NCERT-aligned · 10 notes · 3 shown free

11.1 CONCEPT OF COMMUNICATION

Concept

11.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

Explanation

11.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

Explanation

11.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 QuestionsData 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)
A.[1,2,3]
B.[1,3]
C.[2,3]
D.[1,2]

Answer:

[1,3]

MediumNCERT
Q2.Predict the output of the following code fragment: str1="CBSE" str2="cbse" res=str1<str2 print(res)
A.0
B.`1
C.False
D.True

Answer:

True

MediumNCERT
Q3.pow() belongs to which library?
A.string
B.maths
C.math
D.random

Answer:

math

MediumNCERT
Q4.What will be the output of following code? def ret(x,y): c=x+y res=ret(4,5) print(res)
A.9
B.Error
C.None
D.Infinite

Answer:

None

MediumNCERT
Q5.c = 1 # global variable def add(): c=30 print(c) add()
A.30
B.Error
C.1
D.None

Answer:

30

MediumNCERT
Q6.1. A variable defined inside a function body is known as:
A.Global variable
B.Local variable
C.Formal parameter
D.Actual parameter

Answer:

Local variable

MediumNCERT
Q7.In Python, how are arguments passed?
A.pass by value
B.pass by reference
C.It gives options to user to choose
D.Both A and B

Answer:

pass by reference

MediumNCERT
Q8.Parameters passed at the time of function invocation are known as:
A.Formal parameter
B.Local parameter
C.Global parameter
D.Actual parameter

Answer:

Actual parameter

MediumNCERT