Cisco 200-901 Practice Test - Questions Answers, Page 22
List of questions
Related questions
Refer to the exhibit.
A network engineer works on a Cisco DevNet application that is available for download on the Cisco DevNet website. The engineer prepares a bash script to automate operations that relate to the application. Which workflow is being automated in the bash script?
compilation and configuration of the Cisco DevNet application so that it must be started manually
compilation, installation, and configuration of the Cisco DevNet application so that it starts automatically
compilation and installation of the Cisco DevNet application for an autonomous deployment model
installation and configuration of the Cisco DevNet application so that it starts manually
A company wants to accelerate the adoption of technologies that will simplify its operations. Staff have different skill levels and are looking for a single site to find easy-to-consume beginner, intermediate, and advanced multidomain use cases.
Which site should be used?
DevNet Ecosystem Exchange
DevNet Automation Exchange
DevNet Creations
DevNet Support Forum
Which Cisco product provides malware and content filtering through DNS?
Cisco ASA Firepower module
Cisco AMP
Cisco ISE
Cisco Umbrella
A company is adopting DevOps as part of an internal transformation, and is reviewing the success of the first deployments.
Developers and engineers are working together to resolve any resulting issues.
However, this new way of working has increased overhead, and the team is finding it difficult to complete releases in time.
Which area of the CALMS framework must the company target for improvement?
Collaboration
Lean
Sharing
Measurement
Refer to the exhibit.
Which command, including arguments, is executed when the container starts?
/bin/sh -c "/bin/sleep 30 && nginx -g 'daemon off;'"
/bin/sh -c "/bin/sleep 10 && nginx -g 'daemon off;'"
/bin/bash -c "/bin/sleep 30 && nginx -g 'daemon off;'"
/bin/sh -c "/bin/sleep 30" && nginx -g 'daemon off;'
A developer created a new secure API and is testing the functionality locally. The API was added to a container for further testing, and other team members and applications need to connect to the API. Which command exposes the API in the container as port 8443 and allows connections external to the host?
docker run -p 127.0.0.1:80:8443/tcp myapiservice
docker run -p 0.0.0.0:443:8443/tcp myapiservice
docker run -p 0.0.0.0:8443:443/tcp myapiservice
docker run -p 127.0.0.1:443:8443/tcp myapiservice
A developer has created a new image to use in a Docker build and has added a tag for the image by using the command:
$ docker tag 84fe411926287 local/app:0.4
Which command must be executed next to build the Docker image using the tag?
$ docker build -p local/app:0.4
$ docker run -t local/app:0.4
$ docker run -p local/app:0.4
$ docker build -t local/app:0.4
Access to the management interface of devices must be restricted by using SSH and HTTPS. Which two ports must be included in the ACLs for the protocols to work? (Choose two.)
22
23
80
443
880
What is a capability of an agentless configuration management system?
It requires managed hosts to have an interpreter for a high-level language such as Python or Ruby.
It requires managed hosts to connect to a centralized host to receive updated configurations.
It uses compiled languages as the basis of the domain-specific language to interface with managed hosts.
It uses existing protocols to interface with the managed host.
Refer to the exhibit.
A network engineer wants to automate the port enable/disable process on specific Cisco switches. The engineer creates a script to send a request through RESTCONF and uses ietf as the YANG model and JSON as payload.
Which command enables an interface named Loopback1?
enable_function(Loopback1, true, ‘iana-if-type:softwareLoopback’)
enable_function(‘iana-if-type:softwareLoopback’, Loopback1, true,)
def enable_function(‘iana-if-type:softwareLoopback’, Loopback1, false,)
def enable_function(Loopback1, true, ‘iana-if-type:softwareLoopback’)
Question