PDF Download
NETWORK FUNDAMENTALS CCNA 200-301 SAMPLE TEST
QUESTIONS
Actual Qs and Ans Expert-Verified Explanation
This Exam contains:
-Guarantee passing score -98 Questions and Answers -format set of multiple-choice -Expert-Verified Explanation
Question 1: One
Answer:
Which of the following IPv6 addresses is a link-local multicast address that is used to send a packet to all routers on a segment.
*FF02::1
*FF02::2
*FF05::1
*FF05::2
Question 2: Which of the following prefixes will an IPv6 enabled computer use to automatically configure an IPv6 address for itself.
*FE80::/10
*FC00::/7
*2000::/3
*FF00::/8
Answer:
FE80::/10
The IPv6 prefix FE80::/10 is used for unicast link-local address. IPv6 addresses in the FE80::/10 range begin with the characters FE80 through FEBF. Unicast packets are used for one to one communication.Link-local addresses are unique only on the local segment. Therefor, link-local addresses are not routable.
Question 3: Which table is used by a switch to discover the relationship between Layer 2 address of a device and the physical port used to reach the device
Answer:
CAM table The Content Addressable Memory (CAM) table us used by a switch to discover the relationship between OSI Layer 2 address of a device and the physical port to reach the device Question 4: Your company is located in Atlanta, Georgia. Management has decided to deploy multiple 802.11b WLANs. You are concerned that there are not enough non-overlapping channels to support the number of access points that you need to deploy.How many non-overlapping channels are supported in this deployment?eight eleven five three
Answer:
Three 802.11b wireless local area networks (WLANs) support three non-overlapping or non-interfering channels that can be used in a single area. An additional channel (channel 14) is supported in all countries except the United States.Question 5: Which of the following are types of Internet Protocol version 6 (IPv6) addresses?(Choose three.) Broadcast Anycast Dual-cast Unicast Multicast
Answer:
Anycast Unicast Multicast Question 6: FE80::/10
Answer:
Which of the following networks is not defined by RFC 1918
*10.1.1.0
*10.16.1.0
*172.20.1.0
*172.172.1.0
*192.168.1.0
*192.168.111.0
Question 7: *Each leaf node must connect to every spine mode
*Each spine node must connect to every lead node
Answer:
Which of the following devices cannot b e connected to leaf nodes in the CISCO ACI (Application Centric infrastructure) architecture?*APICs *Application servers *EPGs *Leaf nodes *Spine nodes Question 8: Which of the following addresses will a switch use to make forwarding decisions?*source IP address *destination IP address *source Mac address *destination Mac address
Answer:
Switches make forwarding decisions based on the destination MAC address contained in a frames header.Question 9: FC00::/7
Answer:
Which of the following statements about unique local unicast IPv6 addresses are true? (Select 2) *They are assigned by ICANN *They are equivalent to IPv4 multicast addresses *They can communicate only over a single link *The first 7 bits of the prefix are always 1111110 *They are unique only within an organization
Question 10: FTP
Answer:
How many octets of a MAC address represents the OUI *one *two *three *four
*five Question 11: You run the following command: switch# show ip interface brief What information is displayed?The IP addresses for the interface and the routing protocol advertising the network The IP packet statistics for the interfaces A summary of the IP addresses on the interface and the interface's status A summary of the IP addresses and subnet mask on the interface
Answer:
A summary of the IP addresses on the interface and the interface's status Question 12: You are considering a candidate for a job as a Cisco network technician. As part of the assessment process, you ask the candidate to write down the commands required to configure a serial interface, in the proper order with the correct command prompts. The candidate submits the set of commands shown below (line numbers are for reference only):
- Router# configure terminal
- Router(config)# interface S0
- Router(config)# ip address 192.168.5.5
- Router(config-if)# enable interface
- Router(config-if)# description T1 to Raleigh
Which part(s) of this submission are incorrect? (Choose all that apply.) The prompt is incorrect on line 4 The command on line 4 is incorrect The IP address on line 3 is missing a subnet mask The prompt is incorrect on line 1 The prompt is incorrect on line 3 The prompt is incorrect on line 5 The description command must be executed before the interface is enabled
Answer:
The IP address on line 3 is missing a subnet mask The command on line 4 is incorrect The prompt is incorrect on line 3 The IP address is missing a subnet mask, the prompt is incorrect on line 3, and the command enabling the interface (line 4) is incorrect.
The correct prompts and commands are as follows:
Router# configure terminal Router(config)# interface S0 Router(config-if)# ip address 192.168.5.5 255.255.255.0 Router(config-if)# no shutdown