Questions for the 200-901 were updated on : Dec 01 ,2025
An engineer creates a script that makes calls to the Cisco Webex API to create a new room and then
add users to the room. The engineer runs the script and receives an HTTP response with status code
200. The engineer wants to make an enhancement to the script to send an email to the added users
that includes the title and ID of the room. Which part of the HTTP response contains the additional
information?
A
What does an HTTP 404 status code indicate when consuming APIs?
D
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?
D
A new application is being developed that requires the ability to be copied and moved from one
location to another. The existing infrastructure is already heavily utilized, so the new application must
have a low resource footprint. The application includes a small PostgreSQL database component.
Which application deployment type meets the requirements?
C
Refer to the exhibit.
Refer to the exhibit. A developer is using cURL to test connectivity to a webpage. The request times
out after 10 seconds. The developer tested connectivity by using Ping and can open a socket to the
remote server by using Telnet. Other users confirm that they can access the webpage from their
device. The developer has SSH access to the remote server and runs commands to troubleshoot.
What causes the issue?
A
In which way do webhooks notify a client about server or application changes by default?
C
What is a benefit of using a modular design in code development?
D
DRAG DROP
Drag and drop the code from the bottom onto the box where the code is missing in the Python script
to list all devices. Not all options are used.
None
Explanation:
DRAG DROP
Drag and drop the code from the bottom onto the box where the code is missing to print the
hostname, software version, and uptime for the network devices returned in the response. Not
options are used.
None
Explanation:
What is a characteristic of an IP address?
D
Which type of webhooks must be configured to receive all the events that relate to a specific system?
D
A company plans to develop an application by using Cisco APIs. The application must use code
repositories approved by Cisco. The development team wants to make use of community-
supported, open-source code. Which resource should be used?
C
What is indicated when the green phase of the test-driven development cycle is complete?
A
Refer to the exhibit.
Refer to the exhibit. Which YANG model is used to generate the XML in the exhibit?

B
A development team needs to containerize an application named 'cust475605674\ A Dockerfile has
been created and now the docker build command needs to be run using the current folder to find the
Dockerfile. build the image and create a local repository named 'cust321453857-rep' that points to
that image. Which command must be used?
A
Explanation:
To build a Docker image using the current folder and a specified Dockerfile, and then tag the image
with a specific name for the local repository, the following command is used:
docker build: This command builds a Docker image from a Dockerfile.
-t cust321453857-rep: The -t option tags the resulting image with the specified name
(cust321453857-rep).
-f Dockerfile: The -f option specifies the Dockerfile to use for building the image.
Command:
docker build -t cust321453857-rep -f Dockerfile .
Reference:
Docker Build Command: Docker Build