Of which of the following ICMP replies are there two versions, which are: the standard version that simply states the packet had the Don't Fragment bit set when it reached a router that needed to fragment it, and the PMTU version that includes information about the restricting link?

A. Code 2: Protocol Unreachable
B. Code 3: Port Unreachable
C. Code 4: Fragmentation Needed and Don't Fragment Was Set
D. Code 5: Source Route Failed


Answer: C

Computer Science & Information Technology

You might also like to view...

HTML comments are coded as ____.

A. B. /* comment */ C. !! comment !! D. ? comment ?

Computer Science & Information Technology

When a Web site is requested and information from a text file is sent along with the request, a(n) ________ for that Web site was stored on your computer

Fill in the blank(s) with correct word

Computer Science & Information Technology

The way in which RG signals travel is referred to as wave ____________.     

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

What’s wrong with this code? Find the error(s) in the following code, which is supposed to read a line from some- file.txt, convert the line to uppercase and then append it to somefile.txt.

 string strPath = "somefile.txt";
 string strContents;

 StreamWriter objStreamWriter;
 objStreamWriter = new StreamWriter( strPath, true );

 StreamReader objStreamReader;
 objStreamReader = new StreamReader( strPath );

 strContents = objStreamReader.ReadLine();

 strContents = strContents.ToUpper();

 objStreamWriter.Write( strContents );

 objStreamReader.Close();
 objStreamWriter.Close();

Computer Science & Information Technology