Win IT Exam with Last Dumps 2025


Cisco 350-401 Exam

Page 36/64
Viewing Questions 351 360 out of 638 Questions
56.25%

Question 351
Refer to the exhibit. After running the code in the exhibit, which step reduces the amount of data that the NETCONF server returns to the NETCONF client, to only the interface's configuration?
Image 350-401_351Q.png related to the Cisco 350-401 Exam
A. Use the Ixml library to parse the data returned by the NETCONF server for the interface's configuration.
B. Create an XML filter as a string and pass it to get_config() method as an argument.
C. Create a JSON filter as a string and pass it to the get_config() method as an argument.
D. Use the JSON library to parse the data returned by the NETCONF server for the interface's configuration.

Question 352
Running the script causes the output in the exhibit
Which change to the first line of the script resolves the error?
Image 350-401_352Q.png related to the Cisco 350-401 Exam
A. from ncclient import
B. import manager
C. from ncclient import *
D. import ncclient manager

Question 353
Which line must be added in the Python function to return the JSON object {`cat_9k`: `FXS1932Q2SE`}?
Image 350-401_353Q.png related to the Cisco 350-401 Exam
A. return (json.dumps({d['hostname']: d['serialNumber'] for d in json.loads(test_json)['response']}))
B. return (json.dumps({for d in json.loads(test_json)['response']: d['hostname']: d['serialNumber']}))
C. return (json.loads({d['hostname']: d['serialNumber'] for d in json.dumps(test_json)['response'}))
D. return (json.loads({for d in json.dumps(test_json)['response']: d['hostname']: d['serialNumber']}))

Question 354
Refer to the exhibit
Which code results in the working Python script displaying a list of network devices from the Cisco DNA Center?
Image 350-401_354Q.png related to the Cisco 350-401 Exam
A. network_device_list(dnac["host"], dnac["username"],dnac["password"]) login = dnac_login(dnac) print(dnac_devices)
B. login = dnac_login(dnac["host"], dnac["username"], dnac["password"]) network_device_list(dnac, login) print(dnac_devices)
C. login = dnac_login(dnac["host"], dnac["username"], dnac["password"]) network_device_list(dnac, login) for item in dnac_devices: print(dnac_devices.item)
D. network_device_list(dnac["host"], dnac["username"], dnac["password"]) login = dnac_login(dnac) for item in dnac_devices: print(dnac_devices.item)

Question 355
What does the Cisco DNA REST response indicate?
Image 350-401_355Q.png related to the Cisco 350-401 Exam
A. Cisco DNA Center has the incorrect credentials for cat3850-1
B. Cisco DNA Center is unable to communicate with cat9000-1
C. Cisco DNA Center has the incorrect credentials for cat9000-1
D. Cisco DNA Center has the incorrect credentials for RouterASR-1


Question 356
What is a characteristic of YANG?
A. It is a Cisco proprietary language that models NETCONF data.
B. It allows model developers to create custom data types.
C. It structures data in an object-oriented fashion to promote model reuse.
D. It provides loops and conditionals to control flow within models.

Question 357
DRAG DROP - Drag and drop the snippets onto the blanks within the code to construct a script that changes the routing from gateway 1 to gateway 2 from 11:00 p.m. to 12:00 a.m. (2300 to 2400) only, daily. Not all options are used, and some options may be used twice.
Select and Place:
Image 350-401_357Q.png related to the Cisco 350-401 Exam
Image 350-401_357R.png related to the Cisco 350-401 Exam

Question 358
Refer to the exhibit. The IP SLA is configured in a router. An engineer must configure an EEM applet to shut down the interface and bring it back up when there is a problem with the IP SLA
Which configuration should the engineer use?
Image 350-401_358Q.png related to the Cisco 350-401 Exam
A. event manager applet EEM_IP_SLA event track 10 state down
B. event manager applet EEM_IP_SLA event track 10 state unreachable
C. event manager applet EEM_IP_SLA event sla 10 state unreachable
D. event manager applet EEM_IP_SLA event sla 10 state down

Question 359
Refer to the exhibit.
What is the value of the variable list after the code is run?
Image 350-401_359Q.png related to the Cisco 350-401 Exam
A. [1, 2], [1, 2], [1, 2]
B. [1, 2] * 3
C. [1, 2, 1, 2, 1, 2]
D. [3, 6]

Question 360
Refer to the exhibit.
Which result does the Python code achieve?
Image 350-401_360Q.jpg related to the Cisco 350-401 Exam
A. The code encrypts a base64 decrypted password.
B. The code converts time to the Epoch LINUX time format.
C. The code converts time to the "year/month/day" time format.
D. The code converts time to the yyyymmdd representation.