ExamGecko
Home / Cisco / 200-901 / List of questions
Ask Question

Cisco 200-901 Practice Test - Questions Answers, Page 7

Add to Whishlist

List of questions

Question 61

Report Export Collapse

Which two use cases are supported by Meraki APIs? (Choose two.)

Build location-aware apps from Wi-Fi and LoRaWAN devices.

Build location-aware apps from Wi-Fi and LoRaWAN devices.

Build a custom Captive Portal for Mobile Apps.

Build a custom Captive Portal for Mobile Apps.

Configure network devices via the Dashboard API.

Configure network devices via the Dashboard API.

Deploy applications onto the devices.

Deploy applications onto the devices.

Retrieve live streams from a Meraki Camera.

Retrieve live streams from a Meraki Camera.

Suggested answer: B, C
asked 07/10/2024
Oktorio Rizki Prasetya
48 questions

Question 62

Report Export Collapse

Which API is used to obtain data about voicemail ports?

Webex Teams

Webex Teams

Cisco Unified Communications Manager

Cisco Unified Communications Manager

Finesse Gadgets

Finesse Gadgets

Webex Devices

Webex Devices

Suggested answer: A
asked 07/10/2024
Debaparna Bandyopadhyay
45 questions

Question 63

Report Export Collapse

What is a difference between a synchronous API and an asynchronous API?

Synchronous API calls require an authentication header to be sent while asynchronous calls do not require authentication.

Synchronous API calls require an authentication header to be sent while asynchronous calls do not require authentication.

Synchronous API calls are returned immediately while asynchronous calls do not guarantee an immediate response.

Synchronous API calls are returned immediately while asynchronous calls do not guarantee an immediate response.

An asynchronous API can make offline calls while synchronous APIs do not have this capability.

An asynchronous API can make offline calls while synchronous APIs do not have this capability.

An asynchronous API can make a larger number of calls in a specified time period than a synchronous API.

An asynchronous API can make a larger number of calls in a specified time period than a synchronous API.

Suggested answer: B
Explanation:


Reference: https://stackoverflow.com/questions/36213948/what-is-the-difference-between-asynchronous-calls-and-callbacks

asked 07/10/2024
Dele Olagoroye
35 questions

Question 64

Report Export Collapse

Cisco 200-901 image Question 64 110539 10072024004458000000

Refer to the exhibit. A network engineer must manage the network devices. The engineer prepares a Python script to authenticate to the Cisco DNA Center API and request a device list. The device request, fails and returns error code 401.

Which action solves the problem?

Update the credentials that are already supplied and retry the request.

Update the credentials that are already supplied and retry the request.

Send the request to another network in case there are reachability issues.

Send the request to another network in case there are reachability issues.

Send the Authentication header in the request with a valid configuration.

Send the Authentication header in the request with a valid configuration.

Update the API URL, which matched the API endpoint for device list.

Update the API URL, which matched the API endpoint for device list.

Suggested answer: A
asked 07/10/2024
Haitham Hanash
34 questions

Question 65

Report Export Collapse

Cisco 200-901 image Question 65 110540 10072024004458000000

Refer to the exhibit. Which command needs to be placed on the box where the code is missing to output the value of page_id in the Python 3.7 script?

print(items.get(β€˜items’)[0].get(β€˜page_id’))

print(items.get(β€˜items’)[0].get(β€˜page_id’))

print(items.get(β€˜items’).get(β€˜page_id’))

print(items.get(β€˜items’).get(β€˜page_id’))

print(items[β€˜items’][β€˜page_id’].keys())

print(items[β€˜items’][β€˜page_id’].keys())

print(items[β€˜items’][β€˜page_id’])

print(items[β€˜items’][β€˜page_id’])

Suggested answer: B
asked 07/10/2024
Rambo Jhon
44 questions

Question 66

Report Export Collapse

Refer to the exhibit.

Cisco 200-901 image Question 66 110541 10072024004458000000

The documentation outlines how to use credentials for the AMP API. Which script successfully performs an API call using basic authentication?

Cisco 200-901 image Question 66 110541 10072024004458000000

Option A

Option A

Option B

Option B

Option C

Option C

Option D

Option D

Suggested answer: B
asked 07/10/2024
George Kavvalakis
31 questions

Question 67

Report Export Collapse

Cisco 200-901 image Question 67 110542 10072024004458000000

Refer to the exhibit. A developer creates a Python script that queries Cisco Webex. When the script is executed, a 401 code is returned. After troubleshooting, the developer discovers that the service is missing privileges. Which change to the header in line 4 of the script results in the code 200?

header = {β€œAuthentication”: β€œBearer YOUR_TOKEN”}

header = {β€œAuthentication”: β€œBearer YOUR_TOKEN”}

header = {β€œAuthentication Bearer” : β€œYOUR_TOKEN”

header = {β€œAuthentication Bearer” : β€œYOUR_TOKEN”

header = {β€œAuthorization Bearer” : β€œYOUR_TOKEN”}

header = {β€œAuthorization Bearer” : β€œYOUR_TOKEN”}

header = {β€œAuthorization”: β€œBearer YOUR_TOKEN”}

header = {β€œAuthorization”: β€œBearer YOUR_TOKEN”}

Suggested answer: D
asked 07/10/2024
Laura G
64 questions

Question 68

Report Export Collapse

In Python, which expression checks whether the script returns a success status code when the Requests library is used?

response.status_code == requests.codes.ok

response.status_code == requests.codes.ok

response.code == requests.codes.ok

response.code == requests.codes.ok

response.status_code == requests.ok

response.status_code == requests.ok

response.status_code != requests.codes.ok

response.status_code != requests.codes.ok

Suggested answer: A
Explanation:


Reference: https://realpython.com/python-requests/

asked 07/10/2024
Talal Elemam
54 questions

Question 69

Report Export Collapse

Cisco 200-901 image Question 69 110544 10072024004458000000

Refer to the exhibit. The script returns an output of 401. To use the supplied URL, an HTTP GET request must be sent with an Authorization header. The header value is a base64 encoded concatenation of the username and password.

Which action must be taken to return an output of 200?

Change the verify=False setting in the request to verify=True to enable HTTP Basic authentication.

Change the verify=False setting in the request to verify=True to enable HTTP Basic authentication.

Verify that the username and password values imported from the configuration file are still valid.

Verify that the username and password values imported from the configuration file are still valid.

Insert an Authorization header with the values username:password from the supplied configuration file.

Insert an Authorization header with the values username:password from the supplied configuration file.

Modify the method from LOGIN to GET and supply the username:password value as JSON payload.

Modify the method from LOGIN to GET and supply the username:password value as JSON payload.

Suggested answer: B
asked 07/10/2024
Avion Bryant
49 questions

Question 70

Report Export Collapse

Cisco 200-901 image Question 70 110545 10072024004458000000

Refer to the exhibit. A Python code has been written to query a device. The executed code results in the error shown. Which action resolves the problem?

import json

import json

requests(β€œGET”, base_url + request_url, cookies=cookies)

requests(β€œGET”, base_url + request_url, cookies=cookies)

pip install requests

pip install requests

import requests

import requests

Suggested answer: D
asked 07/10/2024
Brian Wilson
41 questions
Total 471 questions
Go to page: of 48
Search

Related questions