Cisco 200-901 Online Practice
Questions and Exam Preparation
200-901 Exam Details
Exam Code
:200-901
Exam Name
:Developing Applications and Automating Workflows using Cisco Platforms (DEVASC)
Certification
:Cisco Certified DevNet Associate
Vendor
:Cisco
Total Questions
:624 Q&As
Last Updated
:May 25, 2026
Cisco 200-901 Online Questions &
Answers
Question 141:
In test-driven development, what are two of the green bar patterns? (Choose two.)
A. another test B. break C. triangulate D. starter test E. fake it
C. triangulate E. fake it https://www.cs.uic.edu/~i442/Patterns%20for%20TDD.pdf
Question 142:
What are two benefits of organizing code into classes, methods, functions, and modules? (Choose two.)
A. improves readability B. improves reusability C. improves parallelism D. improves performance E. decreases complexity
A. improves readability B. improves reusability
Question 143:
Refer to the exhibit.
A network engineer must change the configuration on devices daily. The Python script must collect CLI arguments from the user, organize data according to the Cisco-IOS-XE-native YANG model, and utilize Cisco REST APIs to make the configuration. Which workflow is being automated by the Python script?
A. updating an existing route on the device B. adding a new route to a device C. including a route on the device and overwriting the current routes D. deleting the route that is passed through the command-line variables
B. adding a new route to a device PUT - replaces the whole routing table PATCH - added the route to the existing - but if the route with ip mask and gw already exists, it does nothing (checked this with route options name, tag, distanceand multicast in the route before using the script)
Question 144:
DRAG DROP
Drag and drop elements of the RESTCONF Protocol stack from the left onto the correct descriptors on the right. Not all elements on the left are used.
A. It requires manual resource provisioning. B. It encourages overlaps in services. C. It encourages repeatable processes. D. It requires the use of large components.
C. It encourages repeatable processes. Principles of Infrastructure as Code: -Systems Can Be Easily Reproduced -Systems Are Disposable -Cattle, Not Pets -Systems Are Consistent -Processes Are Repeatable -Design Is Always Changing Source: https://www.oreilly.com/library/view/infrastructure-as-code/9781491924334/ch01.html
Question 146:
Refer to the exhibit.
What does the Python function do?
A. It returns HTTP Basic Authentication. B. It returns DNAC user and password. C. It reads a token from a local JSON file and posts the token to the DNAC URL. D. It returns an authorization token.
D. It returns an authorization token. import requests from requests.auth import HTTPBasicAuth def get_auth_token(): url = 'https://sandboxdnac.cisco.com/dna/system/api/v1/auth/token' resp = requests.post(url, auth=HTTPBasicAuth("devnetuser", "Cisco123!")) token = resp.json()['Token'] print(token) return token eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiI1ZTlkYmI3NzdjZDQ3ZTAwNGM2N2RkMGUiLCJhdXRoU291cmNlIjoiaW50ZXJuYWwiLCJ0ZW5hbnROYW1lIjoiVE5UMCIsInJvbGVzIjpbIjVkYzQ0NGQ1MTQ4NWM1MDA0YzBmYjIxMi JdLCJ0ZW5hbnRJZCI6IjVkYzQ0NGQzMTQ4NWM1MDA0YzBmYjIwYiIsImV4cCI6MTU5NDMwNjI0OSwiaWF0IjoxNTk0MzAyNjQ5LCJqdGkiOiIwY2Q5YjQyYy1iNWU2LTQ5ZTEtODVjZC1mZWI2MWY2NjQ5ZjYiLCJ1c2VybmFtZSI6ImRldm5l dHVzZXIifQ.OZk5uvMSmC2wG7AIXND_0FNdxTRgpXwiVnO2Vi4eM3uoGV28zYV4da12kchBKvqO9Rkc3SYppCzZXK_bVZ7jObKkWN6SBF_KFUo3avoFee-XCgzznTd2NBBoyu_0fyBinWwF_NX3tIQRX4TMgHdvKtKBVeYPAtSEqHDUGVLAA7VoWuDipE-ktvo4BigYfSptXxTRtTOa1_vTsrwQ0PGiLWNzKA6ruBiCb8i_Tgo7x93MUp0tNy5866Fn51Ix8lcIhW1D0eRCTOZNe-J2e0QYNrAV1Xtv3zpS1p75joEq0kpdjon7NB6lGjFeUV_vGR9IXTQVhKY6KDan7SgCpMvUQ https://community.cisco.com/t5/cisco-digital-network/how-can-i-make-this-script-to-run/td- p/3882782
Question 147:
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.
A. Check the answer in explanation.
A. Check the answer in explanation.
Explanation/Reference:
authentication parameter json
Question 148:
What is a characteristic of an IP address?
A. It is a number ID that is assigned to multiple hosts or interfaces in a network. B. It is a unique number ID that is 30 bits in total. C. It is a physical address that is assigned to only one host or interface. D. It is a unique number ID that is assigned to only one host or interface on a network.
D. It is a unique number ID that is assigned to only one host or interface on a network.
Question 149:
What is the impact on an application from having a large distance between a client device and a host server?
A. latency B. increased bandwidth C. loss of connectivity D. jitter
A. latency Latency refers to the delay between a client request and a server response. A large distance between a client device and a host server increases the latency due to the time it takes for data to travel over the network. Latency: The time delay experienced in a system, particularly in networking, where it refers to the time taken for data to travel from the source to the destination. Impact: High latency can result in slow response times, negatively impacting the performance of applications, especially those requiring real-time interactions. References: Network Latency Overview: Network Latency
Question 150:
Several teams at a company are developing a new CRM solution to track customer interactions with a goal of improving customer satisfaction and driving higher revenue. The proposed solution contains these components:
1.
MySQL database that stores data about customers
2.
HTML5 and JavaScript UI that runs on Apache
3.
REST API written in Python
What are two advantages of applying the MVC design pattern to the development of the solution? (Choose two.)
A. to enable multiple views of the same data to be presented to different groups of users B. to provide separation between the view and the model by ensuring that all logic is separated out into the controller C. to ensure data consistency, which requires that changes to the view are also made to the model D. to ensure that only one instance of the data model can be created E. to provide only a single view of the data to ensure consistency
A. to enable multiple views of the same data to be presented to different groups of users B. to provide separation between the view and the model by ensuring that all logic is separated out into the controller
Nowadays, the certification exams become more and more important and required by more and more
enterprises when applying for a job. But how to prepare for the exam effectively? How to prepare
for the exam in a short time with less efforts? How to get a ideal result and how to find the
most reliable resources? Here on Vcedump.com, you will find all the answers.
Vcedump.com provide not only Cisco exam questions,
answers and explanations but also complete assistance on your exam preparation and certification
application. If you are confused on your 200-901 exam preparations
and Cisco certification application, do not hesitate to visit our
Vcedump.com to find your solutions here.