InterviewSolution
Saved Bookmarks
| 1. |
Return value of the UDP port “Chargen” is _______(a) String of characters(b) String of integers(c) Array of characters with integers(d) Array of zero’s and one’sI had been asked this question in a job interview.My question comes from UDP topic in division Transport Layer of Computer Network |
|
Answer» RIGHT choice is (a) STRING of CHARACTERS The BEST I can explain: Using Chargen with UDP on port 19, the server sends a UDP datagram containing a random number of characters every time it receives a datagram from the connecting host. The number of characters is between 0 and 512. |
|