CCNA题库第一部分

1、Which technology supports the stateless assignment of IPv6 addresses?(Choose two.)

哪些技术支持无状态任务的IPv6地址?(BD)

A. DNS

B. DHCPv6

C. DHCP

D. autoconfiguration

2、After you configure the Loopback0 interface, which command can you enter to verify the

status of the interface and determine whether fast switching is enabled?

在配置环回接口后,哪一个命令可以证实其接口状态和决定是否快速交换开启?(A)

A.Router#show ip interface loopback 0

B.Router#show run

C. Router#show interface loopback 0

D. Router#show ip interface brief

3、Which command sequence can you enter to create VLAN 20 and assign it to an interface

on a switch?

创建VLAN20,并且把端口划分进VLAN20的命令是什么?(A)

A.Switch(config)#vlan 20

Switch(config)#Interface gig x/y

Switch(config-if)#switchport access vlan 20

B.Switch(config)#Interface gig x/y

Switch(config-if)#vlan 20

Switch(config-vlan)#switchport access vlan 20

C. Switch(config)#vlan 20

Switch(config)#Interface vlan 20

Switch(config-if)#switchport trunk native vlan 20

D. Switch(config)#vlan 20

Switch(config)#Interface vlan 20

Switch(config-if)#switchport access vlan 20

E.Switch(config)#vlan 20

Switch(config)#Interface vlan 20

Switch(config-if)#switchport trunk allowed vlan 20

4、Which three commands can you use to set a router boot image? (Choose three.)

哪三个命令是设置路由器启动镜像?(ABC)

技巧:boot system (flash/tftp/rom)

A.Router(config)# boot system flash c4500-p-mz.121-20.bin

B.Router(config)# boot system tftp c7300-js-mz.122-33.SB8a.bin

C. Router(config)#boot system rom c7301-advipservicesk9-mz.124-24.T4.bin

D. Router> boot flash:c180x-adventerprisek9-mz-124-6T.bin

E.Router(config)#boot flash:c180x-adventerprisek9-mz-124-6T.bin

F.Router(config)#boot bootldr bootflash:c4500-jk9s-mz.122-23f.bin

5、Which two statements about IPv6 and routing protocols are true? (Choose two.)

哪两个关于IPV6和路由协议是正确的?(BE)

本题用排除法做

A. EIGRPv3 was developed to support IPv6 routing.//EIGRP没有EIGRPV3

B. OSPFv3 was developed to support IPv6 routing. //正确

C. Loopback addresses are used to form routing adjacencies.//环回口不是形成路由邻居

D. EIGRP, OSPF, and BGP are the only routing protocols that support IPv6. //他们也支持IPV4

E. Link-local addresses are used to form routing adjacencies. //正确

6、Which two statements about late collisions are true? (Choose two.)

关于迟碰撞的说法正确的有?(AB)

A.They may indicate a duplex mismatch.

B.By definition, they occur after the 512th bit of the frame has been transmitted.

C.They indicate received frames that did not pass the FCS match.

D.They are frames that exceed 1518 bytes.

E.They occur when CRC errors and interference occur on the cable.

7、Which command can you enter to set the default route for all traffic to an interface?

哪一个命令用于在一个接口下设置所有的默认路由?(A)

A.router(config)#ip route 0.0.0.0 0.0.0.0 GigabitEthernet0/1

B.router(config)#ip route 0.0.0.0 255.255.255.255 GigabitEthernet0/1

C. router(config-router)#default-information originate

D. router(config-router)#default-information originate always

8、If a router has four interfaces and each interface is connected to four switches, how

many broadcast domains are present on the router?

如果一个路由器有4个接口,每一个接口下有4台交换机,在路由器上有多少个广播域?(C)

A. 1

B. 2

C. 4

D. 8

9、Which command enables IPv6 forwarding on a cisco router?

在思科路由器上,哪一个命令可以进入ipv6的转发?(B)

A. ipv6 host

B. ipv6 unicast-routing

C. ipv6 local

D. ipv6 neighbor

10、Which set of commands is recommended to prevent the use of a hub in the access layer?

哪一个命令用于在接入层阻止使用hub?(C)

A. switch(config-if)#switchport mode trunk

switch(config-if)#switchport port-security maximum 1

B. switch(config-if)#switchport mode trunk

switch(config-if)#switchport port-security mac-address 1

C. switch(config-if)#switchport mode access

switch(config-if)#switchport port-security maximum 1

D. switch(config-if)#switchport mode access

switch(config-if)#switchport port-security mac-address 1

时间: 2024-08-06 03:46:34

CCNA题库第一部分的相关文章

一本通题库 第一部分 C++语言 --> 第五章 数 组 1114:白细胞计数

1114:白细胞计数 时间限制: 1000 ms         内存限制: 65536 KB提交数: 26662     通过数: 8522 [题目描述] 医院采样了某临床病例治疗期间的白细胞数量样本nn份,用于分析某种新抗生素对该病例的治疗效果.为了降低分析误差,要先从这nn份样本中去除一个数值最大的样本和一个数值最小的样本,然后将剩余n−2n−2个有效样本的平均值作为分析指标.同时,为了观察该抗生素的疗效是否稳定,还要给出该平均值的误差,即所有有效样本(即不包括已扣除的两个样本)与该平均值

一本同题库 第一部分 C++语言 --> 第四章 循环结构的程序设计 1099

1099:第n小的质数 时间限制: 1000 ms         内存限制: 65536 KB提交数: 19092     通过数: 9527 [题目描述] 输入一个正整数n,求第n小的质数. [输入] 一个不超过10000的正整数n. [输出] 第n小的质数. [输入样例] 10 [输出样例] 29 源代码 #include<iostream> #include<cmath> using namespace std; int main() { int n; int i,j; i

一本通题库 第一部分 C++语言 --&gt; 第五章 数 组 1116:最长平台

1116:最长平台 时间限制: 1000 ms         内存限制: 65536 KB提交数: 30087     通过数: 9565 [题目描述] 已知一个已经从小到大排序的数组,这个数组的一个平台(Plateau)就是连续的一串值相同的元素,并且这一串元素不能再延伸.例如,在 1,2,2,3,3,3,4,5,5,61,2,2,3,3,3,4,5,5,6中1,2−2,3−3−3,4,5−5,61,2−2,3−3−3,4,5−5,6都是平台.试编写一个程序,接收一个数组,把这个数组最长的平

CCNA题库之四

A network interface port has collision detection and carrier sensing enabled on a shared twisted pair network. From this statement, what is known about the network interface port? A. This is a 10Mb/s switch port. B. This is a 100Mbs switch port. C. T

CCNA题库之二

Refer to the exhibit. Which three statements correctly describe Network Device A? (Choose three.) A. With a network wide mask of 255.255.255.128, each interface does not require an IP address. B. With a network wide mask of 255.255.255.128, each inte

CCNA题库之三

Which layer in the OSI reference model is responsible for determining the availability of the receiving program and checking to see if enough resources exist for that communication? A. transport B. network C. presentation D. session E. application 该题

CCNA题库讲解之一

该题目的考点:数据通信过程中,源目IP/MAC地址的变化 题意:图示的方框里有,route1的IP地址和Mac地址的对应信息,还有数据帧的信息:问题是,要你通过数据帧的信息来推测出route1将要进行做什么事情 题目分析: 如下图: 首先,看出路由器有三个接口,分别是f0/0,f0/1,f0/2:然后,根据数据帧中的源和目ip知道,数据在路由器中是从f0/0进去到f0/2出去的:最后,还需要考虑一点是,数据要先经解封装后,剥去源Mac地址,再在f0/2接口进行重新的封装源和目Mac地址,重新封装

高校平台之题型题库——不再“死”不再动态

高校平台集考试系统.权限系统.基础系统.评教系统.新生入学系统等,有幸参加其中之一的考试系统.在考试系统中存在这样一种情况,关于题库表怎么在数据库中存放的问题. 题库看着简单的两个字,却包含了很多,题库中包含很多题型,每个题型有很多题,就廊坊师范学院来说,到现在为止,经历过得题型就有28种,而且每年都有可能会新增很多题型,如果单纯只是将题型列举,怎么也列举不完,每个题型中有多少道题也不确定,也许今年多,明年就少,也许今年少,明年多... 那么应该如何解决这个问题?有以下三种解决方案: 第一:动态

[NOI题库]1.1题解

今年NOIP居然"各有两道题目从NOI题库中抽取并在原题基础上改动后使用",不好好刷题怎么行. 这是第一篇题解文章,因为题目太水直接上代码了. 1.1编程基础之输入输出 01 Hello, World! 根据题意直接输出"Hello, World!"即可. #include <iostream> using namespace std; int main() { cout<<"Hello, World!"<<e