Free Cisco 200-901 Exam Questions & Answer from Training Expert Actual4dump [Q92-Q113]

Share

Free Cisco 200-901 Exam Questions and Answer from Training Expert Actual4dump

Top Cisco 200-901 Courses Online

NEW QUESTION # 92
Drag and drop the HTTP methods from the left onto their generally accepted corresponding create, read, update, and delete operations on the right.

Answer:

Explanation:

Explanation
1 - D, 2 - B, 3 - C, 4 - E, 5 - A

Reference:
https://www.cisco.com/c/en/us/td/docs/cloud-systems-management/application-policy-infrastructure-controller-e OR Answer :
Post
Get
Put
Delete


NEW QUESTION # 93
Refer to the exhibit.

What caused the error in this API request?

  • A. The API resource does not support JSON format payloads.
  • B. The API resource does not support the POST operation
  • C. The submitted JSON payload has a formatting issue
  • D. The submitted JSON payload includes a field that is not supported by the API resource.

Answer: C


NEW QUESTION # 94
A customer's cloud services must:
Migrate services to another data center on demand.
Save the operational state of the machine on demand.
Support Windows and Linux GUIs.
Maximize hardware utilization.
Which type of deployment meets these requirements?

  • A. virtual machine
  • B. container
  • C. bare metal
  • D. Kubernetes

Answer: A

Explanation:
Virtual machines (VMs) provide the flexibility and capabilities required to meet the described requirements.
VMs can easily migrate between data centers, save and restore their state, and support various operating systems and GUIs.
* Migration: VMs can be moved from one physical server or data center to another, providing high flexibility in resource management.
* State Saving: VMs support saving the operational state (snapshots), allowing quick recovery or migration.
* Support for GUIs: VMs can run different operating systems, including those with graphical user interfaces (GUIs) like Windows and Linux.
* Hardware Utilization: VMs enable better utilization of hardware resources by running multiple VMs on a single physical host.
References:
* Virtual Machines Overview: VMware VMs


NEW QUESTION # 95
How are operations on REST APIs performed as compared to RPC APIs?

  • A. In a REST API, operations are performed on a platform that is identified by the URL, but RPC APIs are platform-oriented.
  • B. In a REST API, operations are performed on an internal resource that is defined on the API, but RPC APIs are resource-oriented.
  • C. In a REST API, operations are performed on an external resource that is defined on the API, but the RCP APIs are resource-oriented.
  • D. In a REST API, operations are performed on an object (node) that is identified by a URL, but RPC APIs are operation-oriented.

Answer: D


NEW QUESTION # 96
Which two NETCONF operations cover the RESTCONF GET operation? (Choose two.)

  • A. <get-config>
  • B. <get>
  • C. <modify-config>
  • D. <get-update>
  • E. <edit>

Answer: A,B

Explanation:
Reference:
https://www.cisco.com/c/en/us/support/docs/storage-networking/management/200933-YANG-NETCONF-Confi


NEW QUESTION # 97
Refer to the exhibit.

Drag and drop the code from the bottom onto the blanks in the code to construct a cURL command using the Cisco DNA Center API. which will provide the details of a WLAN controller with Id af397748444. Not at options are used.

Answer:

Explanation:


NEW QUESTION # 98
Which HTTP status means that the origin server knows the method that is received in the request line, but the target resource does not support the method?

  • A. 0
  • B. 1
  • C. 2
  • D. 3

Answer: D


NEW QUESTION # 99
Which configuration management tool has an agentless capability?

  • A. CFEngine
  • B. Chef
  • C. Puppet
  • D. Ansible

Answer: D

Explanation:
Ansible is appropriate for both small and large environments and can be used for managing a handful of servers and network devices or for managing thousands of devices. It is agentless, meaning there is no software or service that needs to be installed on the managed device.


NEW QUESTION # 100
Refer to the exhibit. An administrator uses RESTCONF to retrieve the interface configuration of Gi1/0/1. Which URL path retrieves filtered information only for Gi1/0/1?

  • A.
  • B.
  • C.
  • D.

Answer: C

Explanation:
https://www.cisco.com/c/en/us/td/docs/ios-
xml/ios/prog/configuration/1610/b_1610_programmability_cg/restconf_programmable_interface.ht ml


NEW QUESTION # 101
In which situation would an edge computing solution be used?

  • A. where high disk space is needed
  • B. where low latency is needed
  • C. where fast memory is needed
  • D. where high CPU throughput is needed

Answer: B


NEW QUESTION # 102
What is an advantage of device-level management as compared to controller-level management to automate the configuration of network devices?

  • A. Device-level management requires one controller per vendor and controller-level management does not.
  • B. Device-level management supports all subsets of the potential device settings and controller-level management does not.
  • C. Device-level management has access to all devices from a single point on the network and controller-level management does not.
  • D. Device-level management supports REST API-enabled devices and controller-level management does not.

Answer: B


NEW QUESTION # 103
Refer to the exhibit.

An API call is constructed to retrieve the inventory in XML format by using the API. The response to the call is 401 Unauthorized. Which two headers must be added to the API call? (Choose two.)

  • A. Option C
  • B. Option D
  • C. Option A
  • D. Option E
  • E. Option B

Answer: A,D

Explanation:
The 401 Unauthorized response indicates that the API call lacks proper authentication. To authenticate a request using a Bearer token, the correct headers must be included. The "Authorization: Bearer <token>" header is the correct format for including a Bearer token in an API request. Additionally, specifying the correct content type can also be important, but in this case, the critical headers are related to authorization.
Reference:
Cisco DevNet Associate Study Guide: API Authentication (Chapter 7, Section: Authentication Methods for REST APIs).


NEW QUESTION # 104
Refer to the exhibit. A developer creates a script to obtain a list of devices by using the Cisco DNA Center API. The remote server authorizes the request only if an authentication token is supplied in the headers. A function named get_auth_token() must retrieve a valid token by using HTTP Basic Authentication. Which code must be added to complete the get_auth_token() function?

  • A. resp = requests.post(url, auth=HTTPBasicAuth(DNAC_USER, DNAC_PASSWORD)) token = resp.json()['Token'] return token
  • B. resp = http.post(url, auth=HTTPBasicAuth(DNAC_USER, DNAC_PASSWORD)) token = resp.json()['Token'] return token
  • C. resp = http.post(url, auth=(DNAC_USER, DNAC_PASSWORD)) token = resp.json()['Token'] return token
  • D. resp = requests.post(url, auth=(DNAC_USER, DNAC_PASSWORD)) token = resp.json ()['Token'] return token

Answer: A

Explanation:
https://developer.cisco.com/docs/dna-center/#!api-quick-start/authentication


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

  • A. Cisco Firepower
  • B. Cisco Identity Services Engine
  • C. Cisco Umbrella
  • D. Cisco Advanced Malware Protection

Answer: D


NEW QUESTION # 106
Which type of OWASP threat forges a malicious HTTP request into an application?

  • A. SQL Injection
  • B. CSRF
  • C. Clickjacking
  • D. XSS

Answer: B

Explanation:
Cross-Site Request Forgery (CSRF) is a type of attack that forges a malicious HTTP request and sends it from a user's browser to a different site where the user is authenticated. The attacker tricks the user into executing unwanted actions on a web application in which the user is currently authenticated. This can lead to unauthorized actions being performed on the user's behalf.
References:
* Cisco DevNet Associate Certification Guide
* OWASP CSRF Prevention Cheat Sheet


NEW QUESTION # 107
Drag and Drop Question
Refer to the exhibit. Drag and drop the code from the bottom onto the box where the code is missing to return the number of interfaces on a network device by using the Cisco DNA Center SDK. Not all options are used.

Answer:

Explanation:


NEW QUESTION # 108
A developer is creating a script to interact with a REST API service which requires basic authentication. The credentials are "devnet:391665405" and the Base64 encoding of the credentials is
"GV2bmV0dXNlcjpDaXNj=". Which payload and header combination must be used for authentication?

  • A. Option C
  • B. Option D
  • C. Option A
  • D. Option B

Answer: C

Explanation:
To create and switch to a new branch called "my-bug-fix" in Git, you use the git checkout -b command. This command creates the branch and switches to it in one step.
A: git checkout -b my-bug-fix - Correct. This command creates a new branch and switches to it. B. git branch
-b my-bug-fix - Incorrect. The -b option is not valid with git branch. C. git branch my-bug-fix - This creates a new branch but does not switch to it. D. git checkout my-bug-fix - This switches to an existing branch but does not create a new one.
References:
* Git Branching - Creating a Branch


NEW QUESTION # 109
A company deploys an application via containers in its local data center. As soon as the application goes into production, it starts to crash at specific hours of the day. After investigation, it is concluded that the crashes are due to too many users accessing the application simultaneously. The spikes must be addressed and allow for future growth without discarding the investment already made. Which deployment model must be used?

  • A. hybrid cloud
  • B. private cloud
  • C. public cloud
  • D. edge

Answer: A

Explanation:
A hybrid configuration is excellent for keeping latency or security-sensitive applications close to home while accessing cloud-based resources as an extension of your infrastructure. A hybrid model also allows for the rapid deployment and deprecating of temporary equipment, eliminating the need to over-provision purchases to support business peaks.


NEW QUESTION # 110

Refer to the exhibit. A developer writes a script to create a new network by using the Cisco DNA Center API.
After running the script for the first time, the developer observes that HTTP code 404 is printed to the console.
Which action resolves the problem?

  • A. The x-auth-token value must be changed to a valid token.
  • B. The requested payload must be fixed to include missing parts.
  • C. The API URL must be changed with a valid URL.
  • D. Internal errors on the code of API server must be fixed.

Answer: C


NEW QUESTION # 111

Refer to the exhibit. A developer creates a Python script by using the Cisco Meraki API. The solution must:
* Obtain a list of HTTP servers for a network named "netl".
* Print the response body if the HTTP status code is 200.
* Handle the timeout requests as exceptions, and print Timeout Error next to the exception to stdout.
Which block of code completes the script?

  • A.
  • B.

Answer: B

Explanation:
The block of code that correctly completes the script should handle timeout exceptions and print the error, as well as print the response body if the HTTP status code is 200. Option A achieves this:
import requests
url = 'https://api.meraki.com/api/v0/networks/net1/httpServers'
headers = { 'Accept': 'application/json' }
response = requests.get(url=url, headers=headers, verify=False, timeout=5) try:
response = requests.get(url, headers=headers, verify=False, timeout=5)
response.raise_for_status()
except requests.Timeout as e:
print("Timeout Error: {}".format(e))
if response.status_code == 200:
print(response.text)
This code makes a GET request to the specified URL, handles the timeout exception by printing a message, and prints the response body if the status code is 200.
References:
* Requests: Handling Timeouts
* Python Requests: Response Status Code


NEW QUESTION # 112
Which two network configuration protocols use XML as a data representation format? (Choose two.)

  • A. SNMP
  • B. RESTCONF
  • C. TOSGA
  • D. NETCONF
  • E. CORBA

Answer: B,D


NEW QUESTION # 113
......

New (2026) Cisco 200-901 Exam Dumps: https://whizlabs.actual4dump.com/Cisco/200-901-actualtests-dumps.html