Cisco 300-435 Practice Test - Questions Answers, Page 2

List of questions
Question 11

Refer to the exhibit.
Which NETCONF protocol operation is used to interact with the YANG model?
<edit-config>
<get>
<get-config>
<copy-config>
Reference: https://www.cisco.com/c/en/us/td/docs/routers/crs/software/crs-r6-4/programmability/configuration/ guide/b-programmability-cg-crs-64x.pdf
Question 12

Refer to the exhibit.
How many YANG models does the NETCONF <get> operation interact with?
one
two
three
four
:
The get operation tag is at the beginning of the document. It interacted only with NTP and its related services. There get operation interacted only with one model.
Question 13

Which statement describe the difference between OpenConfig and native YANG data models?
Native models are designed to be independent of the underlying platform and are developed by vendors and standards bodies, such as the IETF.
Native models are developed by individual developers and designed to apply configurations on platforms.
OpenConfig models are developed by vendors and designed to integrate to features or configurations that are relevant only to that platform.
Native models are developed by vendors and designed to integrate to features or configurations that are relevant only to that platform.
Reference: https://www.cisco.com/c/en/us/products/collateral/switches/nexus-9000-seriesswitches/white- paper-c11-741518.html
Question 14

Refer to the exhibit.
An engineer creates a Python script using RESTCONF to display hostname information. The code must be completed so that it can be tested. Which string completes the highlighted areas in the exhibit?
yang-data+json
yang +json
yang.data+json
json
Reference: https://www.cisco.com/c/en/us/td/docs/ios-xml/ios/prog/configuration/166/b_166_programmability_cg/restconf_prog_int.html
Question 15

Which statement is true for Cisco IOS XE Software?
RESTCONF supports JSON and XML and NETCONF supports XML.
RESTCONF supports XML and NETCONF supports JSON and XML.
RESTCONF and NETCONF supports JSON and XML.
RESTCONF supports XML and NETCONF supports JSON.
Reference: https://www.cisco.com/c/en/us/td/docs/ios-xml/ios/prog/configuration/169/b_169_programmability_cg/restconf_programmable_interface.html
Question 16

Which curl command is used to update the SNMP community of network ID “1234567” to read-only?
Option A
Option B
Option C
Option D
:P
UT is used to update the snmp network ID. The access has to be community and not users.
Therefore, option B is correct.
Question 17

Refer to the exhibit.
Which NETCONF statement type is represented by +--rw address* [ip]?
list
leaf-list
container
submodule
:
Symbols after data node names: "?" means an optional node, "!" means a presence container, and "*" denotes a list and leaf-list.
Question 18

The automation engineer must replace device configuration using RESTCONF. How is this configured using the Python library Requests?
delete()
post()
put()
patch()
Reference: https://www.cisco.com/c/en/us/td/docs/ios-xml/ios/prog/configuration/166/b_166_programmability_cg/restconf_prog_int.html
Question 19

Which two Netmiko methods are used to configure a device? (Choose two.)
send_config()
send_control_from_file()
send_config_set()
send_command()
send_config_from_file()
Reference: https://pynet.twb-tech.com/blog/automation/netmiko.html
Question 20

Refer to the exhibit.
An engineer creates an Ansible playbook to configure VRF information using a local_vrfs variable.
The code must be completed so that it can be tested. Which string completes the code?
present
up
on
active
Reference: https://docs.ansible.com/ansible/latest/modules/ios_vrf_module.html
Question