ETExamTower
300-435Updated 8d ago · Aug 28, 2026

300-435: Automating and Programming Cisco Enterprise Solutions

232 questions across 1 topics, with suggested answers, explanations where available, and imported community discussion. The first 23 questions are free to preview.

Topics

#TopicQuestionsFree
1Controller-Based Network Automation23223

Preview

23 of 232 accessible
Question 1 · Controller-Based Network Automation Open

Which Cisco Catalyst Center (formerly DNA Center) Assurance capability allows every point in the network to act as a sensor, continuously streaming real-time telemetry about application performance and user connectivity?

Answer: A Cisco Catalyst Assurance collects real-time streaming telemetry across the network to provide application-performance and user-connectivity visibility. Path trace is the Assurance-related option: Assurance combines its telemetry collection with automatic path-trace visibility to help isolate connectivity and performance issues. **Learn more:** [Cisco Catalyst Center 2.3.7 Data Sheet](https://www.cisco.com/c/en/us/products/collateral/cloud-systems-management/dna-center/nb-06-dna-center-data-sheet-cte-en.html) · [Cisco Catalyst Assurance Overview](https://www.cisco.com/c/en/us/td/docs/cloud-systems-management/network-automation-and-management/catalyst-center-assurance/2-3-7/b_cisco_catalyst_assurance_2_3_7_ug/b_cisco_catalyst_assurance_2_3_6_ug_chapter_01.html)
Question 2 · Controller-Based Network Automation Open

Refer to the exhibit. An engineer needs to split the network with the network ID `ENAUTO` by using Cisco Meraki APIs. Which code snippet must be added in the box to complete the cURL script?

Question exhibit
Answer: B Cisco Meraki Dashboard API v1 splits a combined network by calling `POST /networks/{networkId}/split`. With `ENAUTO` as the network ID, the required request URL is `https://api.meraki.com/api/v1/networks/ENAUTO/split`. **Learn more:** [Split Network — Meraki Dashboard API v1](https://developer.cisco.com/meraki/api-v1/split-network/)
Question 3 · Controller-Based Network Automation Open

An engineer must list every network for a specific Meraki organization. The engineer must call the organization’s network endpoint and save the returned JSON inventory to disk. Drag the code snippets from the bottom into the boxes in the code to construct the artifact. Not all options are used. <DragDrop items={["x-cisco-meraki-api-key","networks","tenants","X-Auth-Token","organizations","projects","get"]} slots={[{"answer":"x-cisco-meraki-api-key","id":"header"},{"answer":"get","id":"method"},{"answer":"organizations","id":"collection"},{"answer":"networks","id":"resource"}]} template={"import requests, json\n\nbase = \"https://api.meraki.com/api/v1\"\norg_id = \"123456\"\napi_key = \"abcd1234\"\nheaders = {\n \"{{header}}\": api_key,\n \"Accept\": \"application/json\"\n}\n\nresp = requests.{{method}}(\n f\"{base}/{{collection}}/{org_id}/{{resource}}\",\n headers=headers,\n timeout=30\n)\nresp.raise_for_status()\n\nwith open(\"org_networks.json\", \"w\") as f:\n json.dump(resp.json(), f, indent=2)"} explanation={"The Meraki Dashboard API network-inventory operation is `GET /organizations/{organizationId}/networks`. A GET request retrieves the collection without changing it, and the response can be serialized with `json.dump`. The supplied `x-cisco-meraki-api-key` token is the API-key header option for this artifact; `tenants`, `projects`, and `X-Auth-Token` do not form the required Meraki organization-networks request.\n\n**Learn more:** [Cisco Meraki Dashboard API v1 API Index](https://developer.cisco.com/meraki/api-v1/api-index/) · [Cisco Meraki Dashboard API v1 documentation](https://developer.cisco.com/meraki/api-v1/)"} reuse={false} />

Answer: —