Cisco 200-901 Practice Exams
Last updated on Apr 14,2025- Exam Code: 200-901
- Exam Name: Developing Applications and Automating Workflows using Cisco Core Platforms (DEVASC)
- Certification Provider: Cisco
- Latest update: Apr 14,2025
When using the Bash shell, how it the output of the devnet command saved to a tile named “output.txt”?
- A . devnet & output.txt
- B . devnet > output.txt
- C . devnet < output.txt
- D . devnet I output.txt
Refer to the exhibit.
What does the python function do?
- A . It returns DNAC user and password.
- B . It returns HTTP Basic Authentication.
- C . It returns an authorization token.
- D . It reads a token from a local JSON file and posts the token to the DNAC URL.
Which two statements describe the traits of an asynchronous API call? (Choose two.)
- A . The order in which API calls return can be guaranteed
- B . A call to an API does not block the code, but rather it allows application processing to continue
- C . The end user can experience latency or performance lag while waiting for the API call to return
- D . Code execution blocks or waits for the call to an API to return.
- E . A callback function typically is used to process the response from an API call
What is the outcome of executing this command?
git clone ssh://[email protected]/path/to/my-project_git
- A . Creates a local copy of a repository called “my project”
- B . Creates a copy of a branch called “my project”
- C . Initiates a new Git repository called “my project”
- D . Creates a new branch called “my project”
A REST API service requires authentication based on the username and password. The user “john” has the password “384279060” and the Base64 encoding of those credentials is “am9objowMTIzNDU2Nzg=”.
Which method completes an authentication request?
- A . The header must include:
Authorization: Bearer am9obJowMTlzNDU2Nzg= - B . The payload must include:
Authorization: Bearer am9objowMTIzNDU2Nzg= - C . The payload must include.
Authorization: Basic am9objowMTlzNDU2Nzg= - D . The header must include:
Authorization: Basic am9objowMTlzNDU2Nzg=
Which two items are Cisco DevNet resources? (Choose two.)
- A . TAC support
- B . Bitbucket
- C . Sandbox
- D . Software research
- E . API Documentation
Which two types of NAT are used in a network? (Choose two.)
- A . Static NAT
- B . Normal NAT
- C . Multicast NAT
- D . Dynamic NAT
- E . Router NAT
What are the two principles of an infrastructure as code environment? (Choose two)
- A . Complete complex systems must be able to be built from reusable infrastructure definitions.
- B . Environments must be provisioned consistently using the same inputs.
- C . Redeployments cause varying environment definitions.
- D . Service overlap is encouraged to cater for unique environment needs.
- E . Components are coupled, and definitions must be deployed for the environment to function.
Which response status code is used by a RESTful interface to indicate successful execution of a request?
- A . 200
- B . 404
- C . 405
- D . 500
Which REST architectural constraint indicates that no client context should be stored on the server between requests?
- A . stateless
- B . uniform interface
- C . cacheable
- D . client-server