PIM利用声明(Assert)机制来() A.维护邻居关系B.为特定组播源选择转发器C.维护组播树D.维护RP信息
PIM利用声明(Assert)机制来()
A.维护邻居关系
B.为特定组播源选择转发器
C.维护组播树
D.维护RP信息
相关考题:
Whichfragmentisanexampleofinappropriateuseofassertions?() A.assert(!(map.contains(x)));map.add(x);B.if(x0){}else{assert(x==0);}C.publicvoidaMethod(intx){assert(x0);}D.assert(invariantCondition());returnretval;E.switch(x){case1:break;case2:creak;default:assert(x==0);
Given:11. public void go(int x) {Which statement is true?() A.All of the assert statements are used appropriately.B.Only the assert statement on line 12 is used appropriately.C.Only the assert statement on line 15 is used appropriately.D.Only the assert statement on line 18 is used appropriately.E.Only the assert statements on lines 12 and 15 are used appropriately.F.Only the assert statements on lines 12 and 18 are used appropriately.G.Only the assert statements on lines 15 and 18 are used appropriately.
When IP multicast is enabled via PIM, which mode uses the flood and prune metho d? Select the best response.() A. PIM sparse - denseB. Bidir - PIMC. PIM - RPD. PIM - DME. PIM - SM
WhichtypeofdomainsisinterconnectedusingMulticastSourceDiscoveryProtocol?() A.PIM-SMB.PIM-DMC.PIM-SSMD.DVMRP
关于PIM-DM描述错误的是() A.PIM-DM成为协议独立组播-密集模式,属于密集模式的组播路由协议B.PIM-DM假设网络中的每个子网都存在至少一个对组播源感兴趣的接收站点C.PIM-DM使用graft嫁接机制主动恢复组播报文的转发D.PIM-DM不存在周期性的扩散和剪枝现象
When building an IP multicast domain using PIM which mode assumes that other routers do not want to forward multicast packets for the group?()A、PIM - DMB、PIM - SMC、PIM - RPD、CGMPE、IGMP snooping
Which three statements are true about IP multicast configuration?()A、PIM sparse - dense mode and PIM dense mode require an RP on the network.B、PIM sparse mode and PIM dense mode require an RP on the network.C、PIM sparse mode interfaces are always added to the multicast routing table in a router.D、PIM sparse mode and PIM sparse - dense mode require an RP on the network.E、PIM dense mode interfaces are always added to the multicast routing table in a router.F、PIM sparse - dense mode acts as PIM dense mode if an RP is not known.
测试6的阶乘,断言方法是()?A、Assert.assertSame(720,jc.jieChen(6))B、Assert.assertEquals(720,jc.jieChen(6))C、Assert.assertNull(720,jc.jieChen(6))D、Assert.assertTrue(720,jc.jieChen(6))
23.int z=5; 24. 25. public void stuff1(int x) { 26. assert (x 0); 27. switch(x) { 28. case 2: x= 3; 29. default: assert false; } } 30. 31. private void stuff2(int y) { assert (y 0); } 32. 33. private void stuff3() { assert (stuff4O); } 34. 35. private boolean stuff4() { z = 6; return false; } Which is true?() A、 All of the assert statements are used appropriately.B、 Only the assert statement on line 31 is used appropriately.C、 The assert statements on lines 29 and 31 are used appropriately.D、 The assert statements on lines 26 and 29 are used appropriately.E、 The assert statements on lines 29 and 33 are used appropriately.F、 The assert statements on lines 29, 31, and 33 are used appropriately.G、 The assert statements on lines 26, 29, and 31 are used appropriately.
在PIM-DM组网中,关于路由器发送Prune(剪枝)消息,描述正确的有()。A、路由器无本地直连组播接收者时,会向所有PIM邻居发送PruneB、路由器(S,G)表项中出接口列表为空时,会向所有PIM邻居发送Prune消息C、Assert(断言)失败的一方会向获胜一方发送D、路由器接口收到Prune消息后,从此将不在此接口发送相应组播组的报文
When IP multicast is enabled via PIM, which mode uses the flood and prune metho d? Select the best response.()A、PIM sparse - denseB、Bidir - PIMC、PIM - RPD、PIM - DME、PIM - SM
Which two commands are required to enable multicast on a router, knowing that the receivers only support IGMPv2?()A、ip pim rp-addressB、ip pim ssmC、ip pim sparse-modeD、ip pim passive
11. public class Test { 12. public void foo() { 13. assert false; 14. assert false; 15. } 16. public void bar(){ 17. while(true){ 18. assert false; 19. } 20. assert false; 21. } 22. } What causes compilation to fail?() A、 Line 13B、 Line 14C、 Line 18D、 Line 20
单选题23.int z=5; 24. 25. public void stuff1(int x) { 26. assert (x 0); 27. switch(x) { 28. case 2: x= 3; 29. default: assert false; } } 30. 31. private void stuff2(int y) { assert (y 0); } 32. 33. private void stuff3() { assert (stuff4O); } 34. 35. private boolean stuff4() { z = 6; return false; } Which is true?()A All of the assert statements are used appropriately.B Only the assert statement on line 31 is used appropriately.C The assert statements on lines 29 and 31 are used appropriately.D The assert statements on lines 26 and 29 are used appropriately.E The assert statements on lines 29 and 33 are used appropriately.F The assert statements on lines 29, 31, and 33 are used appropriately.G The assert statements on lines 26, 29, and 31 are used appropriately.
单选题public class Test{ public static void main( String[] argv ){ // insert statement here } } Which statement, inserted at line 3, produces the following output?() Exception in thread “main” java.lang.AssertionError: true at Test.main(Test.java:3)A assert true;B assert false;C assert false : true;D assert false == true;E assert false: false;
单选题Which fragment is an example of inappropriate use of assertions? ()A assert (!(map.contains(x))); map.add(x);B if (x 0){}else { assert (x==0); }C public void aMethod(int x) { assert (x 0); }D assert (invariantCondition()); return retval;E switch (x) { case 1: break; case 2: creak; default: assert (x == 0);
单选题PIM-SM中的断言机制的名称是()AREGISTER机制BBSR/RP机制CASSERT机制DJOIN/PRUNE机制