
Refer to the exhibit. An engineer implements an automation with Cisco XTC. Which problem results in the 404 Not Found error code on the REST call?
A. The resource that you are trying to delete does not exist.
B. Port 8080 is not enabled on XTC.
C. XTC does not offer any APIs.
D. You must change the request method.
An engineer is deploying a Python script to manage network devices through SSH. Which library based on Paramiko is used?
A. sshmiko
B. paramiko.agent
C. libssh2
D. netmiko
When using Cisco YDK, which syntax configures the BGP ASN using OpenConfig BGP?
A. bgp.config.as_ = 65000
B. bgp.global_.config.as = 65000
C. bgp.global.config.as_ = 65000
D. bgp.global_.config.as_ = 65000
After a configuration request is sent using NETCONF, which call releases any locks and resources associated with the session?
A.
B.
C.
D.
How does using the Python with statement in conjunction with ncclient manager improve an existing NETCONF automation script?
A. It allows the NETCONF connection to the device to be gracefully closed without having to explicitly code this action.
B. It manages the running configuration of the device by comparing it to the new configuration applied using NETCONF.
C. The with statement tries to connect to the device using TCP port 830 first but also tries to connect via TCP port 22.
D. Use of the with statement catches any exceptions when trying to connect to a device using NETCONF.

Refer to the exhibit. Which command prints out (44, 22) when this code is run on Python 3?
A. print(swap1(d, b))
B. print(swap2(a, b))
C. print(swap1(b, d))
D. print(swap2(22, 44))
An engineer needs to configure network devices in an automated way. Which two ways are used to create structured data using YANG to provide REST-like APIs to enable programmability access? (Choose two.)
A. YAML
B. JSON
C. GPB
D. JSON-RPC
E. XML

Refer to the exhibit. Which HTTP authentication mechanism is being used?
A. simple
B. basic
C. OAuth
D. token
Which is a format used for the YANG JSON content-type header?
A. application/vnd/yang.data+json
B. application/vnd.yang.data+json
C. application/yang.data.json
D. application/vnd.yang.data json
What are two advantages of using Python virtual environments? (Choose two.)
A. They allow for multiple Python projects to use different versions of the same dependency without conflict.
B. They allow multiple Python applications to share virtual memory between subprocesses.
C. They allow for isolated environments where each can use a different version of Python.
D. They allow for all Python projects to utilize the same set of shared dependencies.
E. They allow for multiple virtual machines to share a single Python environment.