200-901 Dumps

200-901 Free Practice Test

Cisco 200-901: Developing Applications and Automating Workflows using Cisco Core Platforms (DEVASC)

QUESTION 66

- (Exam Topic 3)
A file in a local Git repository has been updated and issued the git add . command. The git diff command has been run to compare the changes to the previous commit, but nothing shows. Which action identifies the problem?

Correct Answer: D

QUESTION 67

- (Exam Topic 1)
Which way should be used to safely the API keys?

Correct Answer: B

QUESTION 68

- (Exam Topic 2)
A developer needs a list of clients connected to a specific device in a Meraki network. After making a REST API call, the developer receives an unfamiliar response code. Which Cisco DevNet resource should be used to identify the meaning of the response code?

Correct Answer: A

QUESTION 69

- (Exam Topic 3)
What is a characteristic of RPC APIs compared to REST APIs?

Correct Answer: A

QUESTION 70

- (Exam Topic 3)
Refer to the exhibit.
200-901 dumps exhibit
An engineer sends the request to collect data over Cisco AMP for Endpoints API. The Engineer must list guide and hostname data for all computers, but the first request returns only 500 items out of 2,000. Then, the engineer adds the loop to collect all the data. What must be added to the script where the code is missing to complete the requests?
200-901 dumps exhibit

Correct Answer: A
https://github.com/CiscoSecurity/amp-03-pagination/blob/master/01_paginate.py while 'next' in response_json['metadata']['links']:
next_url = response_json['metadata']['links']['next'] response = session.get(next_url)
response_json = response.json()
for computer in response_json['data']: print(computer['connector_guid'], computer['hostname'])