InterviewSolution
Saved Bookmarks
| 1. |
Suppose a TCP connection is transferring a file of 1000 bytes. The first byte is numbered 10001. What is the sequence number of the segment if all data is sent in only one segment?(a) 10000(b) 10001(c) 12001(d) 11001The question was posed to me at a job interview.I want to ask this question from TCP-1 in chapter Transport Layer of Computer Network |
|
Answer» CORRECT option is (b) 10001 Easiest explanation: The SEQUENCE number given to FIRST byte of a SEGMENT, with RESPECT to its order among the previous segments, is the sequence number of that segment. |
|