Cisco Certified Network Associate (200-301 CCNA) – Question731

Which option best describes an API?

A.
a contract that describes how various components communicate and exchange data with each other
B. an architectural style (versus a protocol) for designing applications
C. a stateless client-server model
D. request a certain type of data by specifying the URL path that models the data

Correct Answer: A

Cisco Certified Network Associate (200-301 CCNA) – Question730

Which option about JSON is true

A.
uses predefined tags or angle brackets () to delimit markup text
B. used to describe structured data that includes arrays
C. used for storing information
D. similar to HTML, it is more verbose than XML

Correct Answer: B

Explanation:

Explanation:
JSON data is written as name/value pairs.
A name/value pair consists of a field name (in double quotes), followed by a colon, followed by a value:
“name”:”Mark”
JSON can use arrays. Array values must be of type string, number, object, array, boolean or null..
For example:
{
“name”:”John”,
“age”:30,
“cars”:[ “Ford”, “BMW”, “Fiat” ]
}

Cisco Certified Network Associate (200-301 CCNA) – Question727

What are two benefits of controller-based networking compared to traditional networking? (Choose two.)

A.
controller-based increases network bandwidth usage, while traditional lightens the load on the network
B. controller-based reduces network configuration complexity, while traditional increases the potential for errors
C. controller-based allows for fewer network failures, while traditional increases failure rates
D. controller-based provides centralization of key IT functions, while traditional requires distributed management functions
E. controller-based inflates software costs, while traditional decreases individual licensing costs

Correct Answer: BD

Cisco Certified Network Associate (200-301 CCNA) – Question724

Which two capabilities of Cisco DNA Center make it more extensible as compared to traditional campus device management? (Choose two.)

A.
REST APIs that allow for external applications to interact natively
B. adapters that support all families of Cisco IOS software
C. SDKs that support interaction with third-party network equipment
D. modular design that is upgradable as needed
E. customized versions for small, medium, and large enterprises

Correct Answer: AC

Explanation:

Explanation:
Cisco DNA Center offers 360-degree extensibility through four distinct types of platform capabilities:
Intent-based APIs leverage the controller and enable business and IT applications to deliver intent to the network and to reap network analytics and insights for IT and business innovation.
Process adapters, built on integration APIs, allow integration with other IT and network systems to streamline IT operations and processes.
Domain adapters, built on integration APIs, allow integration with other infrastructure domains such as data center, WAN, and security to deliver a consistent intent-based infrastructure across the entire IT environment.
SDKs allow management to be extended to third-party vendor’s network devices to offer support for diverse environments.
Reference:
https://www.cisco.com/c/en/us/products/collateral/cloud-systems-man…

Cisco Certified Network Associate (200-301 CCNA) – Question723

DRAG DROP
Drag and drop the descriptions from the left onto the configuration-management technologies on the right.
Select and Place:

Correct Answer: [img 0723-0001.jpg]

Explanation:

Explanation:
The focus of Ansible is to be streamlined and fast, and to require no node agent installation. Thus, Ansible performs all functions over SSH. Ansible is built on Python, in contrast to the Ruby foundation of Puppet and Chef.
TCP port 10002 is the command port. It may be configured in the Chef Push Jobs configuration file . This port allows Chef Push Jobs clients to communicate with the Chef Push Jobs server.
Puppet is an open-source configuration management solution, which is built with Ruby and offers custom Domain Specific Language (DSL) and Embedded Ruby (ERB) templates to create custom Puppet language files, offering a declarative-paradigm programming approach.
A Puppet piece of code is called a manifest, and is a file with .pp extension.

Cisco Certified Network Associate (200-301 CCNA) – Question722

Which output displays a JSON data representation?

A.


B.

C.

D.

Correct Answer: C

Explanation:

Explanation:
JSON data is written as name/value pairs.
A name/value pair consists of a field name (in double quotes), followed by a colon, followed by a value:
“name”:”Mark”
JSON can use arrays. Array values must be of type string, number, object, array, boolean or null. For example:
{
“name”:”John”,
“age”:30,
“cars”:[ “Ford”, “BMW”, “Fiat” ]
}
JSON can have empty object like “taskId”:{}