Your computer has added a dynamically learned MAC address to the local ARP cache. Before the ARP cache timeout has expired, your computer reuses the same ARP cache entry. How long before the entry expires?

A. The entry will expire once the remainder of the 2 minute expiry period is up.
B. The entry will expire immediately after the last usage, regardless of the standard time out interval.
C. The entry will be entered into the ARP cache as a static entry.
D. The entry will remain for 10 minutes after the last usage.


Answer: D

Computer Science & Information Technology

You might also like to view...

Rewrite the following code fragment using a for loop instead of a while loop.

``` int i = 0; while(i < 50) { System.out.println(i); i+=2; } ``` What will be an ideal response?

Computer Science & Information Technology

Which of the following statements is used when you want to add data to the end of an existing text file?

(A) ``` Dim sr As IO.StreamReader = IO.File.OpenText("Data.txt") ``` (B) ``` Dim sr As IO.StreamReader = IO.File.AddText("Data.txt") ``` (C) ``` Dim sw As IO.StreamWriter = IO.File.CreateText("Data.txt") ``` (D) ``` Dim sw As IO.StreamReader = IO.File.AppendText("ata.txt" ```

Computer Science & Information Technology

Which of the following is best described as software that prioritizes and schedules requests and then distributes them to servers based on each server's current load and processing power.

A. server pooling software B. traffic distribution filter C. priority server farm D. load-balancing software

Computer Science & Information Technology

Create a list of courses, sections and their capacity. Produce the result in the following format: (78 rows)

Course and Section CAPACITY -------------------- ---------- ---------------------------------------- 350 Section 3 ---------- 25 10 Section 2 ---------- 15 20 Section 2 ---------- 15 …

Computer Science & Information Technology