What is the name of the process used on VLAN trunks to ensure that traffic from different VLANs are separated?
A) VLAN Tagging
B) VLAN Marking
C) VLAN Sending
D) VLAN Seeding
A
Explanation: A) The VLAN tagging feature is used on VLAN trunks to ensure that traffic from different VLANs can be identified and separated between the two switches.
Computer Science & Information Technology
You might also like to view...
What is the directory name of a file called Names.txt in a directory called AddressBook on disk drive a?
What will be an ideal response?
Computer Science & Information Technology
Consider the following definition of a recursive method.public static int recFunc(int num){ if (num >= 10) return 10; else return num * recFunc(num + 1);}What is the output of the following statement?System.out.println(recFunc(10));
A. 10 B. 110 C. This statement results in infinite recursion. D. None of these
Computer Science & Information Technology