Refer to the exhibit
A.
Lettuce
B.
Kiwi
C.
[‘kiwi’, ‘grape’]
D.
{‘color’: ‘green’, ‘items’: [‘kiwi’, ‘grape’]
Kiwi
An application calls a REST API and expects a result set of more than 550 records, but each time the call is
made, only 25 are returned. Which feature limits the amount of data that is returned by the API?
A.
pagination
B.
payload limit
C.
rate limiting
D.
service timeouts
pagination
In python, which expression checks whether the script returns a success status code when the Requests library is used?
A.
response.status_code== requests.ok
B.
respons.status_code== requests.codes.ok
C.
response.code== requests.codes.ok
D.
response.status_code ! == requests.codes.ok
respons.status_code== requests.codes.ok
Refer to the exhibit.
What is represented in this YANG module?
A.
interface management
B.
topology
C.
BGP
D.
OpenFlow
interface management
Which two statements about JSON and XML are true? (Choose two.)
A.
JSON objects arc collection of key value paire.
B.
The syntax of JSON contains tags, elements, and attributes.
C.
JSON arrays are an unordered set of key value pairs.
D.
The syntax of XML contains tags, elements, and attributes.
E.
XML objects are collections of key-value pairs
JSON objects arc collection of key value paire.
The syntax of XML contains tags, elements, and attributes.
Refer to the exhibit
A process on the host wants to access the service running inside this Docker container. Which port is used to make a connection?
A.
only outbound connections between 3000 and 5000 are possible
B.
port 3000
C.
any port between 3000 and 5000
D.
port 5000
port 3000
Fill in the blanks to complete the python script to retrieve a list of network devices using the Cisco DNA center API
Which service provides a directory lookup for IP addresses and host names?
A.
DNS
B.
DHCP
C.
SNMP
D.
NAT
DNS
Refer to the exhibit
A developer is troubleshooting an API with the given API with the given API documentation and cURL command. What is the cause of this problem?
A.
The user is not allowed to post massages from their account
B.
The request body is missing or incomplete
C.
The API token specified is expired
D.
The authorization header is missing or incomplete
The API token specified is expired
Which two concepts describe test-driven development? (Choose two.)
A.
It enables code refactoring.
B.
Write a test before writing code.
C.
Implementation is driven by incremental testing of release candidates.
D.
User acceptance testers development the test requirements.
E.
Tests are created when code is ready for release
Write a test before writing code.
Implementation is driven by incremental testing of release candidates.