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

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

Add to Whishlist

List of questions

Question 71

Report Export Collapse

Which REST architectural constraint indicates that no client context should be stored on the server between requests?

cacheable

cacheable

stateless

stateless

uniform interface

uniform interface

client-server

client-server

Suggested answer: B
Explanation:


Reference: https://developer.cisco.com/docs/nx-os/#!representational-state-transfer-rest Topic 3, Cisco Platforms and Development

asked 07/10/2024
MYKEL PERRY
46 questions

Question 72

Report Export Collapse

Which platform has an API that can be used to obtain a list of vulnerable software on user devices?

Cisco Umbrella

Cisco Umbrella

Cisco Firepower

Cisco Firepower

Cisco Identity Services Engine

Cisco Identity Services Engine

Cisco Advanced Malware Protection

Cisco Advanced Malware Protection

Suggested answer: D
asked 07/10/2024
Matteo Picchetti
32 questions

Question 73

Report Export Collapse

Which two items are Cisco DevNet resources? (Choose two.)

TAC Support

TAC Support

Software Research

Software Research

API Documentation

API Documentation

Bitbucket

Bitbucket

Sandbox

Sandbox

Suggested answer: C, E
Explanation:


Reference: https://developer.cisco.com/

asked 07/10/2024
Melih Sivrikaya
40 questions

Question 74

Report Export Collapse

FILL BLANK Fill in the blanks to complete the Python script to update the Webex Teams membership of a room using the Python requests library.

import requests

url = β€œhttps://api.ciscospark.com/v1/memberships/

Y2lzY29zcGFyazov379971079INISVAvOTJiM2RkOWEtNjc1ZC00YTQxLThjNDEtMmFiZGY4OWY0NGY0OjExNzJkNmYwL TJIYzMtMTFIOS1iOWI3LWNmMjg3MTJhYTkzNw” my_token = β€œAbCdEf123456”

payload = β€œ{\n \”isModerator\”: true\n}” headers = {

β€˜Authorization’: β€˜Bearer’ + my_token,

β€˜Content-Type’: β€˜application/json’

}

response = requests.__________ (β€œPATCH”, url, headers=__________, data =__________ )

print(response.text.encode(β€˜utf8’))

Suggested answer: A
Explanation:

Answer: A

Explanation:


response = requests.request(β€œPATCH”, url, headers= headers, data = payload ) print(response.text.encode(β€˜utf8’))

asked 07/10/2024
Parita Malbari
57 questions

Question 75

Report Export Collapse

While developing a real-time VoIP application on a Cisco Webex Teams platform, users report that their voice gets chopped or parts of the conversation drops out. Which network constraint is impacting the application?

jitter

jitter

capacity

capacity

delay

delay

latency

latency

Suggested answer: A
asked 07/10/2024
Marcio Lizarbe
45 questions

Question 76

Report Export Collapse

FILL BLANK

Refer to the exhibit.

Cisco 200-901 image Question 76 110551 10072024004458000000

Fill in the blank to complete the query parameter and value so that the result set is returned in reverse chronological order (most recent first) based on when messages were posted to those rooms. HTTP GET /v1/rooms

Suggested answer: A
Explanation:

Answer: A

Explanation:


GET/v1/rooms{?teamId,type,sortBy,max}

Reference: https://developer.webex.com/docs/api/v1/rooms/list-rooms

asked 07/10/2024
jonathan jaramillo
35 questions

Question 77

Report Export Collapse

A company has written a script that creates a log bundle from the Cisco DNA Center every day. The script runs without error and the log bundles are produced. However, when the script is run during business hours, people report poor voice quality of phone calls. What explains this behavior?

The script is written in a low-level programming language where there is no memory safety. This causes a buffer overflow and disruption on the network.

The script is written in a low-level programming language where there is no memory safety. This causes a buffer overflow and disruption on the network.

The speed and duplex settings in Cisco DNA Center are set incorrectly, which causes the transfer to be too slow.

The speed and duplex settings in Cisco DNA Center are set incorrectly, which causes the transfer to be too slow.

The script is running in the Voice VLAN and causes delays and jitter in the subnet.

The script is running in the Voice VLAN and causes delays and jitter in the subnet.

Generating the logs causes the CPU on the network controller to spike, which causes delays in forwarding the voice IP packets.

Generating the logs causes the CPU on the network controller to spike, which causes delays in forwarding the voice IP packets.

Suggested answer: B
asked 07/10/2024
Ian Schraier
41 questions

Question 78

Report Export Collapse

FILL BLANK

Fill in the blanks to complete the statement.

Cisco DNA Center provides the capability to send an HTTP____________request to the API endpoint https://DNA-C_API_ADDRESS/api/v1/network-device/and receive the network____________ list in____________ format.

Suggested answer: A
Explanation:

Answer: A

Explanation:


authentication parameter json

asked 07/10/2024
Jimmy Wasson
42 questions

Question 79

Report Export Collapse

FILL BLANK

Fill in the blanks to complete the Python script to retrieve a list of network devices using the Cisco DNA Center API.

my_token=

β€˜eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzl1NiJ9.ey.JzdWliOil1ZDE0OWZkMjhlZTY2

MmQ3NGM5YzE5ZTliLmYzMClslmV4cCI6MTU3MjM3ODE5MCwidXNlcm5hbWUiOiJraX

N370940885.zhK5LPQd501ZUpZI0IH_qrgOXttlNbxSFFF7JOEtRls’

import requests

url = β€œhttps://myDNAserver/dna/intent/api/v1/network-device” payload = {}

headers = {β€˜x-auth-token’: my_token}

response = requests.request(____________ , url,

headers =____________ , data =____________ ) print(response.text.encode(β€˜utf8’))

Suggested answer: A
Explanation:

Answer: A

Explanation:


response = requests.request( method , url, headers = headers, data = request.get_data ) print(response.text.encode(β€˜utf8’))

Reference: https://www.programcreek.com/python/example/64946/flask.request.get_data

asked 07/10/2024
Carlos Periterra
42 questions

Question 80

Report Export Collapse

Refer to the exhibit.

Given the API documentation for the UCS SDK Python class, UcsHandle, which code snippet creates a handle instance?

Cisco 200-901 image Question 80 110555 10072024004458000000

Cisco 200-901 image Question 80 110555 10072024004458000000

Option A

Option A

Option B

Option B

Option C

Option C

Option D

Option D

Suggested answer: A
Explanation:


Reference: https://www.ciscolive.Com/c/dam/r/ciscolive/us/docs/2016/pdf/LTRINI%202020-LG.pdf

asked 07/10/2024
xingrui li
46 questions
Total 471 questions
Go to page: of 48
Search

Related questions