Cisco Automating and Programming Cisco Enterprise Solutions - 300-435 Exam Practice Test
Which code snippet retrieves the IP address of the interface on a Cisco IOS XE router?
Correct Answer: C
Vote an answer
Explanation: Only visible for PassTestking members. You can sign-up / login (it's free).
Drag and Drop Question
An engineer must enable VLANs and create a management VLAN on an MX appliance. The engineer must update the VLANs settings and then configure a VLAN using the appropriate appliance endpoints. Drag and drop the code snippets from the bottom onto the boxes in the code to construct the artifact. Not all options are used. Options may be used more than once.

An engineer must enable VLANs and create a management VLAN on an MX appliance. The engineer must update the VLANs settings and then configure a VLAN using the appropriate appliance endpoints. Drag and drop the code snippets from the bottom onto the boxes in the code to construct the artifact. Not all options are used. Options may be used more than once.

Correct Answer:

Explanation:
The Meraki Dashboard API authenticates with the x-cisco-meraki-api-key header. Enabling VLAN support on an MX network is done through the network-scoped appliance/vlans/settings endpoint.
After VLANs are enabled, the individual VLAN is configured on the same network through the appliance/vlans endpoint with the VLAN ID appended to the path.
Which two statement describe the role of an artifact repository in a CI/CD pipeline? (Choose two.)
Correct Answer: A,B
Vote an answer
Drag and Drop Question
Drag and drop the code from the bottom onto the boxes in the Python script to create a Cisco Meraki network. Not all options are used.

Drag and drop the code from the bottom onto the boxes in the Python script to create a Cisco Meraki network. Not all options are used.

Correct Answer:

Explanation:
URL line: organizations/{Org_ID}/networks
First body field (key): "type"
First body field (value): "combined"
Request method: "POST"
organizations/{Org_ID}/networks is the correct endpoint to create a new network under a given organization.
The "type": "combined" field specifies the network type that supports multiple product types (like wireless and camera).
The HTTP method POST is used to create new resources in REST APIs.
Refer to the exhibit. Which two parameters are mandatory when the Cisco Meraki API is used to create a network? (Choose two.)


Correct Answer: A,D
Vote an answer
Drag and Drop Question
Drag and drop the code snippets from the bottom onto the blanks in the code to implement a Python script that returns a list of webhooks sent by Cisco Meraki during the last day. Not all options are used.

Drag and drop the code snippets from the bottom onto the blanks in the code to implement a Python script that returns a list of webhooks sent by Cisco Meraki during the last day. Not all options are used.

Correct Answer:

Explanation:
import requests is needed to use the requests library.
The base URL for Meraki API is "https://api.meraki.com".
The endpoint /api/v0/organizations/{organizationId}/webhookLogs retrieves webhook logs.
The correct HTTP method to retrieve data is GET.

Which two actions do Python virtual environments allow users to perform? (Choose two.)
Correct Answer: A,B
Vote an answer
Explanation: Only visible for PassTestking members. You can sign-up / login (it's free).
What is the role of traffic analytics in controller-based platforms?
Correct Answer: D
Vote an answer
Explanation: Only visible for PassTestking members. You can sign-up / login (it's free).
Refer to the exhibit. A network automation engineer is reviewing a YANG module tree to determine how configuration parameters are structured for interface management and ipv4. The engineer must identify the appropriate subtree to use to automate a device change. What is the hierarchy level for the configuration within the tree?


Correct Answer: B
Vote an answer
Explanation: Only visible for PassTestking members. You can sign-up / login (it's free).
Refer to the exhibit. Cisco SD-WAN deployment must be fixed using vManage APIs. A call to vEdge Hardware Health API returns the data in the exhibit (only a portion is shown). If the JSON shown in the exhibit is converted to a Python dictionary named "d", how is the "status" property referenced?


Correct Answer: D
Vote an answer
What does configuration audit API provide during the testing and validation phase of an automated network solution?
Correct Answer: C
Vote an answer
Explanation: Only visible for PassTestking members. You can sign-up / login (it's free).
The automation engineer must replace device configuration using RESTCONF. How is this configured using the Python library Requests?
Correct Answer: B
Vote an answer
Explanation: Only visible for PassTestking members. You can sign-up / login (it's free).