Free 350-401 Practice Test Questions 2026

459 Questions


Last Updated On : 7-Sep-2026


Topic 1: Exam Pool A

What is the name of the numerical relationship of the wireless signal compared to the noise floor?


A. SNR


B. RSSI


C. EIRP


D. gain





A.
  SNR

โœ… Explanation:

SNR (Signal-to-Noise Ratio) is the numerical relationship of the wireless signal compared to the noise floor. It is the difference between the received signal strength (RSSI) and the background noise level, typically expressed in decibels (dB). A higher SNR indicates that the signal is stronger relative to the background noise, resulting in better link quality and higher potential data rates .

Why other options are incorrect:

B. RSSI
โ€“ Received Signal Strength Indicator is a measure of the absolute power level of the received signal, typically expressed in dBm. It does not represent the relationship of the signal compared to the noise floor; it is the signal strength itself.

C. EIRP
โ€“ Effective Isotropic Radiated Power is the output power of an antenna, measured in dBm, and includes transmitter power, cable losses, and antenna gain. It is a measure of how much power is radiated, not a comparison of signal to noise.

D. gain
โ€“ Antenna gain is the measure of how much an antenna focuses power in a direction relative to an isotropic radiator, typically measured in dBi. It does not represent the signal-to-noise relationship.

๐Ÿ”— References:

IEEE 802.11 Standards: Define SNR as the ratio of signal power to noise power, measured in dB.

Cisco Wireless Design Guides: SNR is calculated as the difference between RSSI and noise floor.

What occurs during a Layer 2 inter-controller roam?


A. A new security context is applied for each controller to which the client is associated, but the IP address remains the same.


B. The client must be associated to a new controller where a new IP address and security context are applied.


C. The client retains the same IP address and security context.


D. The client is marked as foreign in the database of each new controller to which it is connected.





C.
  The client retains the same IP address and security context.

โœ… Explanation:

During a Layer 2 inter-controller roam, the client roams between Access Points (APs) connected to different Wireless LAN Controllers (WLCs), but the controllers have wireless LAN interfaces on the same IP subnet. This is a key distinction from a Layer 3 roam.

Because the client stays on the same subnet, it can retain its original IP address. Furthermore, the controllers exchange mobility messages to transfer the client's session context. The new controller requests the client's database entry, including its security context and associations, from the original controller, and this entry is moved to the new controller. This ensures a seamless transition for the client.

Why other options are incorrect:

A. A new security context is applied for each controller to which the client is associated, but the IP address remains the same. This is incorrect. As the client database entry is moved, the security context and associations are carried over and updated for the new AP, but a completely new security context is not applied.

B. The client must be associated to a new controller where a new IP address and security context are applied. This describes a Layer 3 roam, not a Layer 2 roam. In a Layer 3 roam, the client moves to a different subnet and must obtain a new IP address or use a tunnel to maintain its old one.

D. The client is marked as foreign in the database of each new controller to which it is connected. This is also characteristic of a Layer 3 roam. In a Layer 2 roam, the client's entry is moved, not marked as foreign. The "anchor" and "foreign" relationship is established for Layer 3 roams to maintain the client's original IP address when moving across subnets.

๐Ÿ”— References:

Cisco Wireless Controller Configuration Guide: Interco troller Layer 2 roaming occurs when controllers are on the same IP subnet, and the client database entry is moved to the new controller.

Catalyst 9800 Series Configuration Guide: During Interco troller L2 roaming, the controllers exchange mobility messages and the client database entry is moved to the new controller. The process is transparent to the user.

Which character formatting is required for DHCP Option 43 to function with current AP models?


A. ASCII


B. Hex


C. Base64


D. MD5





B.
  Hex

โœ… Explanation:

The character formatting required for DHCP Option 43 to function with current Cisco access point models is Hex.

DHCP Option 43 is used by lightweight access points (LAPs) to discover Wireless LAN Controllers (WLCs) when they are on different subnets. To function correctly, the AP expects the IP address list in a specific hexadecimal format.

Cisco documentation explicitly states: "Add the Option 43 line with this syntax: option 43 hex ". The value must be a hexadecimal TLV (Type-Length-Value) string where:

Type is the sub-option code 0xf1 (decimal 241)
Length is the number of controller IP addresses times 4, in hex
Value is the list of WLC management IP addresses in hex

For example, option 43 hex f108c0a80a05c0a80a14 represents two WLCs with IPs 192.168.10.5 and 192.168.10.20.

Why other options are incorrect:

A. ASCII
Only the legacy Cisco Aironet 1000 Series (VxWorks) APs support ASCII format for Option 43. Current AP modelsโ€”such as the Catalyst 9100, 9105, 9120, and 9130 seriesโ€”require Hex format per Cisco documentation. ASCII is no longer standard for modern APs and is explicitly described as a special case for the older 1000 Series.

C. Base64
Base64 is not a format used for Cisco DHCP Option 43. The known formats for vendor-specific options are Hex, ASCII, and IP Address. Base64 is generally used for encoding binary data in contexts like email attachments, not for Cisco AP discovery.

D. MD5
MD5 is a hashing algorithm used for data integrity and password storage, not for formatting DHCP option values. It has no relevance to DHCP Option 43 configuration for APs.

๐Ÿ”— References

Cisco DHCP Option 43 Configuration Guide: "Add the Option 43 line with this syntax: option 43 hex "

Cisco 1000 Series Special Case: "Add the Option 43 line with this syntax: option 43 ascii "Comma separated IP address list""

What is the API keys option for REST API authentication?


A. a credential that is transmitted unencrypted


B. one-time encrypted token


C. a username that is stored in the local router


D. a predetermined string that is passed from client to server.





D.
  a predetermined string that is passed from client to server.

โœ… Explanation:

An API key is a predetermined, static string that is generated by the API provider and passed from the client to the server with each request to authenticate the calling application. The server validates the key against its database and grants or denies access. API keys are one of the simplest and most common authentication methods for REST APIs, particularly for server-to-server integrations.

Typically, the client includes the API key in the HTTP request header (e.g., Authorization: Bearer YOUR_API_KEY or X-API-Key: YOUR_API_KEY) . It is strongly discouraged to send API keys in URLs, as they can be logged in server logs, browser history, or referrer headers.

Why other options are incorrect:

A. a credential that is transmitted unencrypted
This is incorrect. While it is true that API keys can be vulnerable if transmitted over an insecure channel, the option does not define the API key itself. The security practice is to always use HTTPS (TLS) to encrypt the transmission. The key is not inherently "unencrypted"; the protocol used determines its transmission security.

B. one-time encrypted token

This is incorrect. A one-time encrypted token describes a different authentication mechanism, such as a JWT (JSON Web Token) or OAuth 2.0 token, which is often short-lived and can be encrypted. API keys are static and do not expire by default; they are not one-time or inherently encrypted .

C. a username that is stored in the local router
This is incorrect. API keys are not usernames stored locally on a router. They are application credentials stored on the server-side and provided to the client. They can be scoped to specific permissions or resources, but they are not usernames .

๐Ÿ”— References:

Scaler API Key Definition: "An API key is a unique string that identifies and authenticates an application or project when it calls an API" .

TechTarget API Key Overview: "The API keys approach... uses machine-generated strings to create unique pairs of identifying credentials and API access tokens" .

In a virtual environment, what is a VMDK file?


A. A file containing information about snapshots of a virtual machine.


B. A zip file connecting a virtual machine configuration file and a virtual disk. A configuration file containing settings for a virtual machine such as a guest OS. A file containing a virtual machine disk drive.


C. A configuration file containing settings for a virtual machine such as a guest OS.


D. A file containing a virtual machine disk drive.





D.
  A file containing a virtual machine disk drive.

Explanation:

A VMDK (Virtual Machine Disk) file is the primary file format used by VMware virtualization products to store the contents of a virtual machine's hard disk drive. It contains the complete disk image, including the guest operating system, applications, system files, and user data. It is the virtual equivalent of a physical hard drive.

VMDK files can be configured as fixed-size (pre-allocated) or dynamically growing (thin-provisioned). They can also be split into multiple files (extents) to facilitate large disk sizes or storage management. This format is fundamental to VMware ESXi and Workstation, and has also been adopted by other virtualization platforms as a standard.

Why other options are incorrect:

A. A file containing information about snapshots of a virtual machine:
Snapshot data is stored in delta or redo log files (e.g., -delta.vmdk), not the base VMDK disk file. Snapshots reference the base disk but are stored separately.

B. A zip file connecting a virtual machine configuration file and a virtual disk:
This describes an OVA (Open Virtual Appliance) or OVF (Open Virtualization Format) file, which is a packaging format containing multiple files (configuration, disk, and metadata) bundled into a TAR archive.

C. A configuration file containing settings for a virtual machine such as a guest OS:
VM configuration settings (guest OS, memory, CPU, network) are stored in a separate file with a .vmx extension, not the .vmdk disk file.

๐Ÿ”— References:

VMware Virtual Machine Disk Format (VMDK): The native disk format for VMware products.


VMDK File Types and Functions: "The base VMDK file... stores the virtual machine's disk data" .

What are two characteristics of Cisco Catalyst SD-WAN? (Choose two.)


A. control plane operates over DTLS/TLS authenticated and secured tunnels


B. time-consuming configuration and maintenance


C. distributed control plane


D. unified data plane and control plane


E. centralized reachability, security, and application policies





A.
  control plane operates over DTLS/TLS authenticated and secured tunnels

E.
  centralized reachability, security, and application policies

Explanation:

Cisco Catalyst SD-WAN is designed with a clear separation between the data plane, control plane, and management plane, which enables centralized management and policy control for large-scale networks while simplifying operations.

Secure Control Plane (Option A):
The control plane is a key architectural component of Catalyst SD-WAN. The control plane connections between the SD-WAN Controllers (vSmart), routers (vEdge), and the management system are secured using Datagram Transport Layer Security (DTLS) or Transport Layer Security (TLS) tunnels. This ensures that all control traffic, including routing and policy information, is authenticated and encrypted.

Centralized Policies (Option E):
The architecture is policy-driven and centralized. The SD-WAN Controllers manage the control plane, using the Overlay Management Protocol (OMP) to exchange routes, next hops, keys, and policy information. The controllers apply centralized policy to provide reachability, security, and application policies across the entire WAN fabric. These policies are orchestrated by a central authority rather than being configured hop-by-hop on each device.

Why other options are incorrect:

B. time-consuming configuration and maintenance
This is the opposite of a key benefit. The solution is designed to reduce operational overhead and simplify network management with a centralized approach, reducing the complexity of traditional WANs. As noted, a traditional distributed control plane model results in each node needing individual routing and security configurations, increasing complexity.

C. distributed control plane
This is incorrect. Catalyst SD-WAN features a centralized control plane managed by the SD-WAN Controllers. In contrast, traditional networks operate on a distributed control plane model.

D. unified data plane and control plane
This is incorrect. Catalyst SD-WAN separates the data plane, control plane, and management plane, providing a clear separation of duties. Traditional networks often unify these planes, but the SD-WAN architecture is explicitly distributed and separated.

๐Ÿ”— References:

Cisco Catalyst SD-WAN Solution Overview: Separates control, management, and data planes; centralizes policies .

Cisco Catalyst SD-WAN Security Configuration Guide: Control plane operates over DTLS/TLS tunnels .


A. Option A


B. Option B


C. Option C


D. Option D





C.
  Option C

โœ… Explanation:

The error message % telnet connections not permitted from this terminal indicates that the outbound Telnet connections are restricted. This is controlled by the transport output command on the VTY lines (which are used for outgoing connections like Telnet), not the console line.

Why other options are incorrect:

A. Option A:
This applies an access list to the console line (which is for inbound console sessions) using access-class, which is used to restrict incoming connections, not outbound. It does not address the transport output restriction for outgoing Telnet.

B. Option B:
This applies an access list to the VTY lines but uses the out direction. Standard access-class on VTY lines restricts incoming Telnet/SSH sessions to the router (using in), not outgoing connections. The syntax is also incorrect for controlling outbound Telnet.

D. Option D:
This applies the transport output command to the console line, which is used for physical console access, not for network connections. The console line does not control outbound Telnet sessions; the VTY lines do.

๐Ÿ”— References

Cisco IOS Configuration Fundamentals: The transport output command is used on VTY lines to specify which protocols are allowed for outgoing connections.

Cisco IOS Security Command Reference: The default for VTY lines is transport output telnet ssh; if it is restricted, this command is required to enable Telnet outbound.

Which statement describes the Cisco SD-Access plane functionality for fabricenabled wireless?


A. Control plane traffic and data plane traffic are sent to the WLC through VXLAN.


B. The control plane traffic is sent to the WLC through CAPWAP tunnels, and the data plane traffic is sent from the AP to the fabric edge switch through VXLAN.


C. The control plane traffic is sent to the WLC through VXLAN, and the data plane traffic is sent to the WLC through CAPWAP tunnels.


D. Control plane traffic and data plane traffic are sent to the WLC through CAPWAP tunnels.





B.
  The control plane traffic is sent to the WLC through CAPWAP tunnels, and the data plane traffic is sent from the AP to the fabric edge switch through VXLAN.

โœ… Explanation:

In the Cisco SD-Access architecture for fabric-enabled wireless, the control and data plane traffic are split to provide centralized management with a distributed, optimized data path .

Control Plane (CAPWAP): The Control and Provisioning of Wireless Access Points (CAPWAP) protocol is used exclusively for control plane traffic . This means that management, configuration, and client authentication traffic travel between the AP and the Wireless LAN Controller (WLC) . The WLC remains the central manager for all wireless functions, but it does not process client data traffic .

Data Plane (VXLAN): For the user data plane, the AP establishes a direct Virtual Extensible LAN (VXLAN) tunnel to the first-hop fabric edge switch . The AP encapsulates the wireless client's Ethernet frames into VXLAN and sends them directly to the edge switch, where they are placed onto the wired fabric network . This distributed data plane eliminates the need for traffic to be hair-pinned back to a centralized controller, improving performance and scalability .

This split design provides the best of both worlds: centralized control for simplified management and a distributed data plane for optimal traffic flow and consistent policy enforcement across wired and wireless networks.

Why other options are incorrect:

A. Control plane traffic and data plane traffic are sent to the WLC through VXLAN.
Incorrect. The WLC is reached via the CAPWAP control plane tunnel, not VXLAN . The VXLAN tunnel is from the AP to the fabric edge node for data traffic .

C. The control plane traffic is sent to the WLC through VXLAN, and the data plane traffic is sent to the WLC through CAPWAP tunnels.
Incorrect. This reverses the roles of the protocols. Control plane traffic uses CAPWAP, and data plane traffic uses VXLAN .

D. Control plane traffic and data plane traffic are sent to the WLC through CAPWAP tunnels.
Incorrect. This describes the traditional, non-fabric "Over-the-Top" (OTT) wireless model, not the optimized fabric-enabled design . In fabric-enabled wireless, the data plane is decoupled from the WLC and distributed .

๐Ÿ”— References

Cisco Live 2024 Presentation on SD-Access Fabric-Enabled Wireless: "CAPWAP Control Plane, VXLAN Data plane... Optimized for 802.11ac & 802.11ax APs" .

Cisco Catalyst 9800 Configuration Guide: "Control plane traffic between the fabric APs and the fabric wireless controller is through the CAPWAP tunnel. For the data plane, a fabric AP establishes a VXLAN tunnel to the fabric edge node" .

A wireless network engineer must configure a WPA2+WPA3 policy with the Personal security type. Which action meets this requirement?


A. Configure the GCMP256 encryption cipher.


B. Configure the CCMP128 encryption cipher.


C. Configure the GCMP128 encryption cipher.


D. Configure the CCMP256 encryption cipher.





B.
  Configure the CCMP128 encryption cipher.

โœ… Explanation:

The requirement is to configure a WPA2+WPA3 policy with the Personal security type. This is known as a WPA3 Personal Transition Mode (also referred to as WPA2+WPA3-Personal mixed-mode). In this mode, the wireless LAN is configured to support both WPA2-Personal and WPA3-Personal clients to ensure broad compatibility .

The key factor for choosing the encryption cipher is compatibility across both security standards. WPA2-Personal is limited to 128-bit encryption and does not support 256-bit ciphers . The most common and compatible cipher is CCMP128 (AES), as it is the required minimum encryption algorithm for both WPA2 and WPA3-Personal modes .

Why other options are incorrect:

A. Configure the GCMP256 encryption cipher.
This is a 256-bit cipher that is not supported by WPA2. It is typically used with specific WPA3-Enterprise configurations (like WPA3-Enterprise 192-bit mode) or for Wi-Fi 7, not for a mixed WPA2+WPA3-Personal policy .

C. Configure the GCMP128 encryption cipher.
This is a 128-bit encryption cipher, but it is not part of the standard WPA2 mandatory cipher set (which is CCMP/AES). It is an option that is not commonly used or compatible for a WPA2+WPA3 mixed mode .

D. Configure the CCMP256 encryption cipher.
This is a 256-bit cipher that is not supported by WPA2-Personal. It is typically used only for specific WPA3-Enterprise configurations, not for WPA2+WPA3-Personal transition mode .

๐Ÿ”— References:

Cisco WPA3 Transition Mode Documentation: A WPA2+WPA3-Personal mixed-mode configuration requires enabling AES/CCMP128 ciphers .

Cisco WPA3 Deployment Guide: CCMP128(AES) is the required cipher for WPA2+WPA3 Personal transition mode .

A client device roams between wireless LAN controllers that are mobility peers, Both controllers have dynamic interface on the same client VLAN which type of roam is described?


A. intra-VLAN


B. inter-controller


C. intra-controller


D. inter-subnet





B.
  inter-controller

โœ… Explanation:

The described scenarioโ€”a client roaming between two different wireless LAN controllers (WLCs) that are mobility peersโ€”defines an inter-controller roam . The key factor is that the client moves between two separate physical controllers . The fact that both controllers have dynamic interfaces on the same client VLAN further classifies this as a Layer 2 inter-controller roam, meaning the client remains on the same IP subnet and retains its IP address . In this scenario, the new controller exchanges mobility messages with the original controller, and the client database entry is moved to the new controller to keep the session intact .

Why other options are incorrect:

A. intra-VLAN:
This describes a network condition (same subnet/VLAN) rather than the roaming event itself. While this is a Layer 2 roam, "inter-controller" is the correct term for the roaming event.

C. intra-controller:
Incorrect because this term describes a client roaming between APs connected to the same WLC. The question explicitly states the client roams between different controllers, making this option invalid .

D. inter-subnet:
Incorrect because this term describes roaming where the client moves to a different IP subnet or VLAN . The scenario specifies both controllers have interfaces on the same client VLAN .

๐Ÿ”— References:
Cisco Learning Network: What are Mobility Groups?


Refer to the exhibit. A customer reports that many wireless clients cannot reliably receive multicast audio. Which action resolves this issue?


A. Set the 24 Mbps and 54 Mbps data rates to Supported.


B. Set the RSSI Threshold to -67dBm.


C. Set the Fragmentation Threshold to 1250 bytes


D. Disable RSSI Low Check.





A.
  Set the 24 Mbps and 54 Mbps data rates to Supported.

โœ… Explanation:

The root cause is how multicast audio is transmitted over Wi-Fi. Unlike unicast traffic, which uses the highest possible data rate, multicast traffic is sent at one of the basic (mandatory) data rates . In the exhibit, both 24 Mbps and 54 Mbps are set as "Mandatory" rates.

For multicast audio to be reliably received, the transmission rate must not be too high, as clients at the edge of a cell may not be able to hear it. The solution is to set the highest mandatory rate to the lowest feasible speed. By moving the 24 Mbps and 54 Mbps rates from "Mandatory" to "Supported," the highest mandatory rate is lowered (in this case, to 12 Mbps, which is already mandatory). This ensures that multicast audio is broadcast at a more robust, lower data rate that all clients can reliably receive .

Why other options are incorrect:

B. Set the RSSI Threshold to -67dBm:
While an RSSI of -67 dBm is a general guideline for good voice coverage , adjusting this threshold does not directly change the data rate at which multicast packets are transmitted. It is a coverage threshold for client roaming, not a solution for the multicast transmission rate issue.

C. Set the Fragmentation Threshold to 1250 bytes:
The fragmentation threshold (2346 bytes in the exhibit) controls the size at which packets are broken into smaller fragments to improve reliability in noisy environments . It does not affect the fundamental rate at which multicast traffic is sent and is not a primary factor in resolving multicast audio reliability .

D. Disable RSSI Low Check:
This setting generally relates to client association and roaming decisions based on signal strength, not the transmission rate of multicast packets.

๐Ÿ”— References:

Multicast and Data Rates: Cisco documentation explains that multicast traffic is transmitted at the highest basic/mandatory data rate, recommending that only the lowest enabled rate be set as mandatory to ensure reliable reception .

RF Design for Voice: Sources confirm that for voice applications, maintaining specific RSSI and SNR levels is important, but the multicast data rate is a separate configuration for reliable streaming .

In which forms can Cisco Catalyst SD-WAN routers be deployed at the perimeter of a site to provide SD-WAN services?


A. virtualized instances


B. hardware, software, cloud, and virtualized instances


C. hardware, virtualized. and cloud instances


D. hardware and virtualized instances





B.
  hardware, software, cloud, and virtualized instances

โœ…Explanation:

Cisco Catalyst SD-WAN routers can be deployed at the perimeter of a site in various forms to provide SD-WAN services. This flexibility is a key aspect of the architecture, allowing it to adapt to different deployment scenarios, from physical branch offices to virtualized and cloud environments.

Cisco's official solution overview states that the data plane of the SD-WAN fabric comprises "the data plane edge devices at branches, campuses, data centers, cloud environments, and other sites." These edge devices can be deployed in the following ways:

Hardware Instances: Physical routers like the Cisco Catalyst 8000 series, ISR 4000 series, and Meraki MX appliances can be deployed on-site to provide high-performance SD-WAN services directly at the WAN edge.

Software (Virtualized) Instances: The Cisco Catalyst 8000V Edge Software is a virtual form factor that can be launched on hypervisors (like ESXi or KVM) or cloud platforms, delivering the same SD-WAN and network services functionality without the need for dedicated hardware.

Cloud Instances: Beyond virtual machines, Cisco SD-WAN can be deployed directly as a cloud-native service. This includes connectivity to cloud service providers (like AWS, Azure, Google Cloud) via solutions like Cloud OnRamp for Multicloud, and can also be integrated into a SASE architecture via the cloud-hosted security services.

Therefore, the comprehensive list includes hardware, software, virtualized instances, and cloud-based deployment options, making Option B the most complete and accurate answer.

Why other options are incorrect:

A. virtualized instances:
Incorrect. This excludes hardware and cloud-based deployments, which are essential deployment options for Cisco Catalyst SD-WAN routers.

C. hardware, virtualized, and cloud instances:
Incorrect. This list omits the "software" category, which is a significant deployment model, as "virtualized instances" are a specific type of software deployment. The term "software" more comprehensively covers both virtualized and other software-based deployment methods.

D. hardware and virtualized instances:
Incorrect. This answer excludes cloud-based deployments, which are a fundamental part of the Cisco Catalyst SD-WAN architecture for both on-premises and multi-cloud environments.

References:

Cisco Catalyst SD-WAN Solution Overview: Describes how the data plane consists of WAN Edge devices deployed at branches, campuses, data centers, cloud environments, and other sites .

Cisco Catalyst SD-WAN Components (Cisco Press): Details the deployment options for SD-WAN Control Components: Cisco cloud-hosted, managed service provider/partner hosted, on-premises, and customer cloud-hosted .


Page 12 out of 39 Pages
PreviousNext
67891011121314151617
350-401 Practice Test Home

What Makes Our Implementing Cisco Enterprise Network Core Technologies (350-401 ENCOR) Practice Test So Effective?

Real-World Scenario Mastery: Our 350-401 practice exam don't just test definitions. They present you with the same complex, scenario-based problems you'll encounter on the actual exam.

Strategic Weakness Identification: Each practice session reveals exactly where you stand. Discover which domains need more attention, before Implementing Cisco Enterprise Network Core Technologies (350-401 ENCOR) exam day arrives.

Confidence Through Familiarity: There's no substitute for knowing what to expect. When you've worked through our comprehensive 350-401 practice exam questions pool covering all topics, the real exam feels like just another practice session.