Packets sent to a ________ address do not leave the IPv6 subnet

A) Unique local
B) Link-local
C) Global unicast
D) Multicast


B
Explanation: B) Link local IPv6 addresses do what they say: They are limited to be forwarded only on a single local link. No IPv6 router will forward these frames outside that specific configured link.

Computer Science & Information Technology

You might also like to view...

What is the value of myCount.count displayed?

``` public class Test { public static void main(String[] args) { Count myCount = new Count(); int times = 0; for (int i=0; i<100; i++) increment(myCount, times); System.out.println( "myCount.count = " + myCount.count); System.out.println("times = "+ times); } public static void increment(Count c, int times) { c.count++; times++; } } class Count { int count; Count(int c) { count = c; } Count() { count = 1; } }``` a. 101 b. 100 c. 99 d. 98

Computer Science & Information Technology

What is the improved efficiency of Dijkstra's algorithm by using an alternative data structure?

a. O((V+E) log E) b. O(V+E) c. O(V) d. O(V*E)

Computer Science & Information Technology

You can open the Word Help window any time by clicking the Help icon on the ____________________.

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

Computer Science & Information Technology

Answer the following statement(s) true (T) or false (F)

Computers used several OSs before Windows and MS-DOS dominated the market.

Computer Science & Information Technology