Misc Topics in Computer Networks
Question 1 |
Internet chat | |
Web browsing | |
E-mail | |
ping |
Discuss it
Question 2 |
(P) SMTP (1) Application layer (Q) BGP (2) Transport layer (R) TCP (3) Data link layer (S) PPP (4) Network layer (5) Physical layer
P – 2 Q – 1 R – 3 S – 5 | |
P – 1 Q – 4 R – 2 S – 3 | |
P – 1 Q – 4 R – 2 S – 5 | |
P – 2 Q – 4 R – 1 S – 3 |
Discuss it
Question 3 |
In the following pairs of OSI protocol layer/sub-layer and its functionality, the INCORRECT pair is
Network layer and Routing | |
Data Link Layer and Bit synchronization | |
Transport layer and End-to-end process communication | |
Medium Access Control sub-layer and Channel sharing |
Discuss it
1) Yes, Network layer does Routing 2) No, Bit synchronization is provided by Physical Layer 3) Yes, Transport layer provides End-to-end process communication 4) Yes, Medium Access Control sub-layer of Data Link Layer provides Channel sharing.
Question 4 |
Group-1 Group-2 P. Data link 1. Ensures reliable transport of data over a physical point-to-point link Q. Network layer 2. Encoder/decodes data for physical transmission R. Transport layer 3. Allows end-to-end communication between two processes 4. Routes data from one network node to the next
P-1, Q-4, R-3 | |
P-2, Q-4, R-1 | |
P-2, Q-3, R-1 | |
P-1, Q-3, R-2 |
Discuss it
Question 5 |
Both bridge and router selectively forward data packets | |
A bridge uses IP addresses while a router uses MAC addresses | |
A bridge builds up its routing table by inspecting incoming packets | |
A router can connect between a LAN and a WAN |
Discuss it
Question 6 |
6 and 925 | |
6 and 7400 | |
7 and 1110 | |
7 and 8880 |
Discuss it
UDP data = 8880 bytes UDP header = 8 bytes IP Header = 20 bytes Total Size excluding IP Header = 8888 bytes. Number of fragments = ⌈ 8888 / 1480 ⌉ = 7 Refer the Kurose book slides on IP (Offset is always scaled by 8) Offset of last segment = (1480 * 6) / 8 = 1110
Question 7 |
1075 | |
1575 | |
2220 | |
2200 |
Discuss it
Question 8 |
TCP guarantees a minimum communication rate | |
TCP ensures in-order delivery | |
TCP reacts to congestion by reducing sender window size | |
TCP employs retransmission to compensate for packet loss |
Discuss it
- Reliable data transfer.
- Throughput
- Timing
- Security
- It ensures in-order delivery of packets by numbering them.
- It avoids congestion by limiting the sending window size.
- It retransmits packets which are lost in the path.
Question 9 |
HTTP runs over TCP | |
HTTP describes the structure of web pages | |
HTTP allows information to be stored in a URL | |
HTTP can be used to test the validity of a hypertext link |
Discuss it
Question 10 |
A serial transmission Ti uses 8 information bits, 2 start bits, 1 stop bit and 1 parity bit for each character. A synchronous transmission T2 uses 3 eight bit sync characters followed by 30 eight bit information characters. If the bit rate is 1200 bits/second in both cases, what are the transfer rates of Ti and T2?
100 characters/sec, 153 characters/sec | |
80 characters/sec, 136 characters/sec | |
100 characters/sec, 136 characters/sec | |
80 characters/sec, 153 characters/sec |
Discuss it
Transfer Rate = Bit rate * ( Information bits / Total number of bits transmitted)
Serial communication :
Total number of bits transmitted = 8 + 2 + 1 + 1 = 12 bits
Information bits = 8 bits
Transfer Rate = 1200 * (8/12) = 800 bits/sec
Given size of one character is 8 bits.
So, Transfer Rate = 800/8 = 100 characters/sec
Synchronous transmission :
Total number of bits transmitted = 3 + 30 = 33 bits
Information bits = 30 bits
Transfer Rate = 1200 * (30/33) = 1090.90 bits/sec
Given size of one character is 8 bits.
So, Transfer Rate = 1090.90/8 ≈ 136 characters/sec.
Thus, option (C) is correct.
Please comment below if you find anything wrong in the above post.
Quiz of this Question