Q31. - (Topic 2) 

Refer to the exhibit. 

The MAC address table is shown in its entirety. The Ethernet frame that is shown arrives at 

the switch. 

What two operations will the switch perform when it receives this frame? (Choose two.) 

A. The switch will not forward a frame with this destination MAC address. 

B. The MAC address of 0000.00aa.aaaa will be added to the MAC Address Table. 

C. The MAC address of ffff.ffff.ffff will be added to the MAC address table. 

D. The frame will be forwarded out of all the active switch ports except for port fa0/0. 

E. The frame will be forwarded out of fa0/0 and fa0/1 only. 

F. The frame will be forwarded out of all the ports on the switch. 

Answer: B,D 

Explanation: 

If the switch already has the MAC address in its table for the destination, it will forward the frame directly to the destination port. If it was not already in its MAC table, then they frame would have been flooded out all ports except for the port that it came from. 


Q32. - (Topic 7) 

Which option is the default switch port port-security violation mode? 

A. shutdown 

B. protect 

C. shutdown vlan 

D. restrict 

Answer:

Explanation: Shutdown—This mode is the default violation mode; when in this mode, the switch will automatically force the switchport into an error disabled (err-disable) state when a violation occurs. While in this state, the switchport forwards no traffic. The switchport can be brought out of this error disabled state by issuing the errdisable recovery cause CLI command or by disabling and reenabling the switchport. 

Shutdown VLAN—This mode mimics the behavior of the shutdown mode but limits the error disabled state the specific violating VLAN. 


Q33. - (Topic 7) 

Which RFC was created to alleviate the depletion of IPv4 public addresses? 

A. RFC 4193 

B. RFC 1519 

C. RFC 1518 

D. RFC 1918 

Answer:


Q34. - (Topic 3) 

Which IP address is a private address? 

A. 12.0.0.1 

B. 168.172.19.39 

C. 172.20.14.36 

D. 172.33.194.30 

E. 192.169.42.34 

Answer:


Q35. - (Topic 3) 

If an Ethernet port on a router was assigned an IP address of 172.16.112.1/20, what is the maximum number of hosts allowed on this subnet? 

A. 1024 

B. 2046 

C. 4094 

D. 4096 

E. 8190 

Answer:

Explanation: 

Each octet represents eight bits. The bits, in turn, represent (from left to right): 128, 64, 32 , 16 , 8, 4, 2, 1 Add them up and you get 255. Add one for the all zeros option, and the total is 256. Now, take away one of these for the network address (all zeros) and another for the broadcast address (all ones). Each octet represents 254 possible hosts. Or 254 possible networks. Unless you have subnet zero set on your network gear, in which case you could conceivably have 255. The CIDR addressing format (/20) tells us that 20 bits are used for the network portion, so the maximum number of networks are 2^20 minus one if you have subnet zero enabled, or minus 2 if not. You asked about the number of hosts. That will be 32 minus the number of network bits, minus two. So calculate it as (2^(32-20))-2, or (2^12)-2 = 4094 


Q36. - (Topic 2) 

Which address type does a switch use to make selective forwarding decisions? 

A. Source IP address 

B. Destination IP address 

C. Source and destination IP address 

D. Source MAC address 

E. Destination MAC address 

Answer:

Explanation: 

Switches analyze the destination MAC to make its forwarding decision since it is a layer 2 device. Routers use the destination IP address to make forwarding decisions. 


Q37. - (Topic 3) 

Which statement describes the process ID that is used to run OSPF on a router? 

A. It is globally significant and is used to represent the AS number. 

B. It is locally significant and is used to identify an instance of the OSPF database. 

C. It is globally significant and is used to identify OSPF stub areas. 

D. It is locally significant and must be the same throughout an area. 

Answer:

Explanation: 

The Process ID for OSPF on a router is only locally significant and you can use the same number on each router, or each router can have a different number-it just doesn't matter. The numbers you can use are from 1 to 65,535. Don't get this confused with area numbers, which can be from 0 to 4.2 billion. 


Q38. - (Topic 5) 

Refer to the exhibit. 

After configuring two interfaces on the HQ router, the network administrator notices an error message. What must be done to fix this error? 

A. The serial interface must be configured first. 

B. The serial interface must use the address 192.168.1.2 

C. The subnet mask of the serial interface should be changed to 255.255.255.0 

D. The subnet mask of the FastEthernet interface should be changed to 255.255.255.240 

E. The address of the FastEthernet interface should be changed to 192.168.1.66 

Answer:

Explanation: 

The IP address 192.168.1.17 255.255.255.0 specifies that the address is part of the 192.168.1.0/24 subnet 

24 mask bits = 255.255.255.0 28 mask bits = 255.255.255.240 192.168.1.0/24 subnet has a host range of 192.168.1.1 to 192.168.1.254 (0 being network and 255 being broadcoast) 192.168.1.17/28 subnet has a host range of 192.168.1.17 to 192.168.1.30 (16 being network and 31 being broadcast) 192.168.1.65/28 subnet has a host range of 192.168.1.65 - 192.168.1.78 (64 being network and 79 being broadcast) 

if fa0/0 was left as /24, you can see that the host range includes the host range of 192.168.1.64/28 which conflicts. Simply speaking, you can't overlap the subnets. By changing the subnet mask of fa0/0 to 255.255.255.240, these networks would no longer overlap. 


Q39. - (Topic 1) 

Refer to the exhibit. 

What must be configured to establish a successful connection from Host A to switch SW-A through router RT-A? 

A. VLAN 1 on RT-A 

B. IP routing on SW-A 

C. default gateway on SW-A 

D. crossover cable connecting SW-A and RT-A 

Answer:

Explanation: 

In order for the switch to reach networks that are not local, such as networks attached to different interfaces of the router, it will need to set its default gateway to be the IP address of the attached router. 


Q40. - (Topic 1) 

Refer to the topology and switching table shown in the graphic. 

Host B sends a frame to Host C. What will the switch do with the frame? 

A. Drop the frame 

B. Send the frame out all ports except port 0/2 

C. Return the frame to Host B 

D. Send an ARP request for Host C 

E. Send an ICMP Host Unreachable message to Host B 

F. Record the destination MAC address in the switching table and send the frame directly to Host C 

Answer: