In which Spanning-Tree states does a switch port learn MAC addresses? (Select two)A.BlockingB.ListeningC.ForwardingD.LearningE.Relaying

In which Spanning-Tree states does a switch port learn MAC addresses? (Select two)

A.Blocking

B.Listening

C.Forwarding

D.Learning

E.Relaying


相关考题:

以太网交换机根据( )转发数据包。A) MAC地址B) IP地址C) LLC地址D) PORT地址

以下程序段的输出结果为 ( )int j=2;switch(j){case 2:System.out.print("two.");case 2+1:System.out.println("three.");breakdefault:System.out.println("value is"+j);break;}A.two.three.B.two.C.three.D.value is 2

编译和执行以下代码,输出结果是( )。 int i=1; switch (i) { case 0: System.out.print("zero,"); break; case 1: System.out.print("one,"); case 2: System.out.print("two,"); default: System.out.println("default"); }A.one,B.one,two,C.one,two,defaultD.default

以太网交换机是根据(129)转发数据包的。在Switch模式下,在交换机命令中,如果键入con,则表示(130)。访问交换机的方式有多种,配置一台新的交换机时可以(131)进行访问。A.IP地址B.MAC地址C.LLC地址D.PORT地址

The network security policy requires that only one host be permitted to attach dynamically to each switch interface. If that policy is violated, the interface should shut down. Which two commands must the network administrator configure on the 2950 Catalyst switch to meet this policy?()A. Switch1(config-if)# switchport port-security maximum 1B. Switch1(config)# mac-address-table secureC. Switch1(config)# access-list 10 permit ip hostD. Switch1(config-if)# switchport p ort-security violation shutdownE. Switch1(config-if)# ip access-group 10

4.—_________ Mike________ his homework in the evening?—No,he doesn't.A. Do;doesB. Does;doC. Do;doD. Does;does

Which of the following may illustrate the difference between "competence" and__________ "performance"?A.What a person "knows" and what he/she "does".B.What a person "can do" and what he/she "does".C.What a person "does" and what he/she "knows".D.What a person "does" and what he/she "can do".

给定如下Java代码片段,编译运行时的结果是() int i=2; switch(i) { default: System.out.println(“default”); case 0: System.out.println(“zero”); break; case 1: System.out.println(“one”); case 2: System.out.println(“two”); }A.输出:defaultB.输出:default zeroC.编译出错,default 语句位置不符合switch结构的语法结构D.输出two

写出下列程序段的输出结果:_______。 int i=1; switch (i%3 ) { case 0: printf("zero"); case 1: printf("one"); case 2: printf("two"); }

写出程序的输出: int i=1; switch (i%3 ) { case 0: printf("zero"); case 1: printf("one"); case 2: printf("two"); }