Assignment 10
Assignment 10
QUESTION 1
The CSMA/CD protocol, predominantly used in Ethernet, addresses which of the following
challenges?
Detailed solution: The CSMA/CD protocol ensures efficient use of shared media by detecting
collisions and managing retransmissions.
QUESTION 2
Which MAC technique is most suitable for bursty traffic with sporadic transmissions?
Detailed solution: Contention-based asynchronous MAC is ideal for sporadic, short transmissions
like those typical of interactive terminal-host traffic, as it is simple to implement and efficient under
light load conditions.
NPTEL Online Certification Courses
Indian Institute of Technology Kharagpur
Jan 2025
QUESTION 3
In Go-Back-N ARQ, why must the size of the sender's window be less than 2m , where m is the
number of bits in the sequence number?
Detailed solution: If the window size were equal to or greater than 2m, the same sequence numbers
could be reused before the acknowledgment for earlier frames is received, causing confusion at the
receiver about whether the frames are retransmissions or new ones.
QUESTION 4
What is the minimum frame size for Ethernet (IEEE 802.3), and why is it important?
Detailed solution: If the frame size were smaller than 64 bytes, it is possible for the transmission to
complete before a collision is detected, leading to undetected collisions and corrupted data.The frame
size includes a 14-byte header, 46 bytes of payload, and a 4-byte CRC (Cyclic Redundancy Check).
NPTEL Online Certification Courses
Indian Institute of Technology Kharagpur
Jan 2025
QUESTION 5
In a Selective Repeat ARQ system with a 4-bit sequence number and a sender's window size of 8, what is
the minimum size of the receiver's buffer to prevent loss of out-of-order frames?
a) 4
b) 8
c) 16
d) 1
Detailed Solution:
Selective Repeat ARQ, the sender's and receiver's window sizes are equal and must be at most half of 2�,
where � = 4. 2m / 2 = 16 / 2 = 8. The receiver's buffer size must equal the sender's window size to store
out-of-order frames.
QUESTION 6
A wireless CSMA/CA network uses a backoff algorithm with a contention window size that
doubles after each collision. If the initial contention window size is 32, what is the maximum
contention window size after 4 collisions?
a) 256
b) 512
c) 128
d) 1024
QUESTION 7
In a shared 75 kbps channel, each station transmits a 20-bit frame every 2000 ms. If the network
uses Slotted Aloha, what is the maximum number of stations that can be supported?
NPTEL Online Certification Courses
Indian Institute of Technology Kharagpur
Jan 2025
a) 7500
b) 2775
c) 7000
d) 5000
QUESTION 8
Consider a CSMA/CD network where the frame transmission time Tf is much larger than the
propagation delay tp. Which of the following factors affect the efficiency of the network?
Detailed Solution :
Frame Size : Larger frames improve efficiency by reducing overhead.
Propagation Delay (tp) : Higher delay increases collision probability, reducing efficiency.
Backoff Time : Longer backoff after collisions leads to idle time, lowering efficiency.
Total Number of Stations : More stations increase contention and collisions, reducing efficiency.
So All are True.
QUESTION 9
NPTEL Online Certification Courses
Indian Institute of Technology Kharagpur
Jan 2025
In a round-robin MAC technique, a network has 10 stations, and each station gets a time slot of 2 ms. If a
station has a data frame of 2 KB to transmit, and the transmission rate is 1 Mbps, how many rounds will it
take for the station to complete its transmission?
a) 4
b) 8
c) 16
d) 20
Detailed Solution :
Time to transmit 2 KB (16 Kb) at 1 Mbps: (16Kb/1Mbps) = 16ms
Number of time slots needed of each 2 ms : (16/2) = 8
Number of rounds (10 stations = 10 slots per round) : 8 slots / (1 slot per round) = 8
QUESTION 10
A network administrator is analyzing a collision on a traditional Ethernet network using CSMA/CD. They
observe the following sequence:
If the backoff limit is reached without successful transmission, what should the node do next?
Detailed Solution : If the backoff limit is exceeded in CSMA/CD, the node aborts the transmission
and reports a failure. This prevents indefinite retries that could congest the network.