A. The count parameter creates a counter that you can view with the show firewall command
B. The count parameter allows the router to count the number of pings for logging purposes
C. The count parameter allows the router to pause for 10000 seconds before sending out a ping
D. The count parameter allows the router to send out 1000 pings and then stop
第1题:
A.OntheDialer0interface,addthepppoeenablecommand
B.OntheDialer0Interface,addtheipmtu1496command
C.OntheATM0/0interface,addthedialerpool-member1command
D.OntheATM0/0interface,addthedialerpool-member0command
第2题:
以下对于列表的相关操作中哪些项有正确的输出结果?
A.>>> language = list('PHP'); >>> language[1:] = 'ython'; >>> print(language) ['P', 'y', 't', 'h', 'o', 'n']#B.>>> print(list('Life is short, you need Python.').count('is')) 1#C.>>> x = [2, 3, 0, 4, 1] >>> x.sort() >>> print(x) [0, 1, 2, 3, 4]#D.>>> words = ['Life', 'is', 'short', 'you', 'need', 'Python'] >>> words.index('you') 4第3题:
【单选题】搬运码垛工作站RAPID程序中,若count=1,那么Incr count指令执行结束后,count的结果为()
A.1
B.2
C.3
D.4
第4题:
A.Router John uses alink-state routing protocol.
B.Router John will receive routing updates on the Serial0/0 interface.
C.Router John will receive routing updates on the Serial0/1 interface.
D.Router John will send routing updates out the Serial0/0 interface.
E.Router John will send routing updates out the FastEthernet0/0 interface.
F.Router John will send routing updates out the Serial0/1 interface.
第5题:
下列代码的输出结果是__________。 num = 27 count = 0 while num > 0: if num % 2 == 0: num /= 2 elif num % 3 == 0: num /= 3 else: num -= 1 count += 1 print(count)
第6题:
以下对于列表的相关操作中哪些项有正确的输出结果?
A.>>> language = list('PHP'); >>> language[1:] = 'ython'; >>> print language ['P', 'y', 't', 'h', 'o', 'n']#B.>>> print list('Life is short, you need Python.').count('is') 1#C.>>> x = [2, 3, 0, 4, 1] >>> x.sort() >>> print x [0, 1, 2, 3, 4]#D.>>> words = ['Life', 'is', 'short', 'you', 'need', 'Python'] >>> words.index('you') 4