Cisco DevNet Associate - 200-901 Exam Practice Test
Drag and drop the steps from the left into order on the right to create a common CI/CD pipeline process. Not all options are used.


Correct Answer:

What is a function of the default gateway in a network?
Correct Answer: B
Vote an answer
Explanation: Only visible for PassTestking members. You can sign-up / login (it's free).
Drag and drop the code from the bottom onto the box where the code is missing to construct a Python script that calls a REST API request. Not all options are used.


Correct Answer:

Reference:
Cisco DevNet Associate Certification Guide, Sections on interacting with REST APIs using Python Official documentation for the Requests library: Requests: HTTP for Humans
Into which type of Python data structure should common data formats be parsed?
Correct Answer: C
Vote an answer
Explanation: Only visible for PassTestking members. You can sign-up / login (it's free).
Which task is performed because the test-driven development approach is being used?
Correct Answer: A
Vote an answer
Explanation: Only visible for PassTestking members. You can sign-up / login (it's free).
What is a capability of Ansible playbooks?
Correct Answer: B
Vote an answer
Explanation: Only visible for PassTestking members. You can sign-up / login (it's free).
Which action does the Git command git merge allow the development to perform?
Correct Answer: A
Vote an answer
Explanation: Only visible for PassTestking members. You can sign-up / login (it's free).
In the test-driven development model, what is changed after a test fails?
Correct Answer: C
Vote an answer
Explanation: Only visible for PassTestking members. You can sign-up / login (it's free).
Drag and drop the common API styles from the left onto the requirement on the right.


Correct Answer:

Reference:
Cisco DevNet Associate Certification Guide, Sections on API styles and their characteristics Official Cisco documentation on RESTful and RPC APIs General programming resources on synchronous vs. asynchronous API calls Therefore, the correct mapping is:
synchronous → "Code execution must wait for an API call to return before continuing." asynchronous → "Code execution does not need to wait for an API call to return before continuing." REST → "Data is called indirectly using generic HTTP methods such as GET, POST, PUT, and DELETE." RPC → "Calls to request a service from a remote server must execute the same way as a request to the local system."