ExamGecko
Home Home / Cisco / 200-901

Cisco 200-901 Practice Test - Questions Answers, Page 22

Question list
Search
Search

List of questions

Search

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?

A.

compilation and configuration of the Cisco DevNet application so that it must be started manually

A.

compilation and configuration of the Cisco DevNet application so that it must be started manually

Answers
B.

compilation, installation, and configuration of the Cisco DevNet application so that it starts automatically

B.

compilation, installation, and configuration of the Cisco DevNet application so that it starts automatically

Answers
C.

compilation and installation of the Cisco DevNet application for an autonomous deployment model

C.

compilation and installation of the Cisco DevNet application for an autonomous deployment model

Answers
D.

installation and configuration of the Cisco DevNet application so that it starts manually

D.

installation and configuration of the Cisco DevNet application so that it starts manually

Answers
Suggested answer: B

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?

A.

DevNet Ecosystem Exchange

A.

DevNet Ecosystem Exchange

Answers
B.

DevNet Automation Exchange

B.

DevNet Automation Exchange

Answers
C.

DevNet Creations

C.

DevNet Creations

Answers
D.

DevNet Support Forum

D.

DevNet Support Forum

Answers
Suggested answer: D

Which Cisco product provides malware and content filtering through DNS?

A.

Cisco ASA Firepower module

A.

Cisco ASA Firepower module

Answers
B.

Cisco AMP

B.

Cisco AMP

Answers
C.

Cisco ISE

C.

Cisco ISE

Answers
D.

Cisco Umbrella

D.

Cisco Umbrella

Answers
Suggested answer: D

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?

A.

Collaboration

A.

Collaboration

Answers
B.

Lean

B.

Lean

Answers
C.

Sharing

C.

Sharing

Answers
D.

Measurement

D.

Measurement

Answers
Suggested answer: B

Explanation:


Reference: https://blog.sonatype.com/principle-based-devops-frameworks-calms

Refer to the exhibit.

Which command, including arguments, is executed when the container starts?

A.

/bin/sh -c "/bin/sleep 30 && nginx -g 'daemon off;'"

A.

/bin/sh -c "/bin/sleep 30 && nginx -g 'daemon off;'"

Answers
B.

/bin/sh -c "/bin/sleep 10 && nginx -g 'daemon off;'"

B.

/bin/sh -c "/bin/sleep 10 && nginx -g 'daemon off;'"

Answers
C.

/bin/bash -c "/bin/sleep 30 && nginx -g 'daemon off;'"

C.

/bin/bash -c "/bin/sleep 30 && nginx -g 'daemon off;'"

Answers
D.

/bin/sh -c "/bin/sleep 30" && nginx -g 'daemon off;'

D.

/bin/sh -c "/bin/sleep 30" && nginx -g 'daemon off;'

Answers
Suggested answer: A

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?

A.

docker run -p 127.0.0.1:80:8443/tcp myapiservice

A.

docker run -p 127.0.0.1:80:8443/tcp myapiservice

Answers
B.

docker run -p 0.0.0.0:443:8443/tcp myapiservice

B.

docker run -p 0.0.0.0:443:8443/tcp myapiservice

Answers
C.

docker run -p 0.0.0.0:8443:443/tcp myapiservice

C.

docker run -p 0.0.0.0:8443:443/tcp myapiservice

Answers
D.

docker run -p 127.0.0.1:443:8443/tcp myapiservice

D.

docker run -p 127.0.0.1:443:8443/tcp myapiservice

Answers
Suggested answer: C

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?

A.

$ docker build -p local/app:0.4

A.

$ docker build -p local/app:0.4

Answers
B.

$ docker run -t local/app:0.4

B.

$ docker run -t local/app:0.4

Answers
C.

$ docker run -p local/app:0.4

C.

$ docker run -p local/app:0.4

Answers
D.

$ docker build -t local/app:0.4

D.

$ docker build -t local/app:0.4

Answers
Suggested answer: D

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.)

A.

22

A.

22

Answers
B.

23

B.

23

Answers
C.

80

C.

80

Answers
D.

443

D.

443

Answers
E.

880

E.

880

Answers
Suggested answer: A, D

What is a capability of an agentless configuration management system?

A.

It requires managed hosts to have an interpreter for a high-level language such as Python or Ruby.

A.

It requires managed hosts to have an interpreter for a high-level language such as Python or Ruby.

Answers
B.

It requires managed hosts to connect to a centralized host to receive updated configurations.

B.

It requires managed hosts to connect to a centralized host to receive updated configurations.

Answers
C.

It uses compiled languages as the basis of the domain-specific language to interface with managed hosts.

C.

It uses compiled languages as the basis of the domain-specific language to interface with managed hosts.

Answers
D.

It uses existing protocols to interface with the managed host.

D.

It uses existing protocols to interface with the managed host.

Answers
Suggested answer: D

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?

A.

enable_function(Loopback1, true, ‘iana-if-type:softwareLoopback’)

A.

enable_function(Loopback1, true, ‘iana-if-type:softwareLoopback’)

Answers
B.

enable_function(‘iana-if-type:softwareLoopback’, Loopback1, true,)

B.

enable_function(‘iana-if-type:softwareLoopback’, Loopback1, true,)

Answers
C.

def enable_function(‘iana-if-type:softwareLoopback’, Loopback1, false,)

C.

def enable_function(‘iana-if-type:softwareLoopback’, Loopback1, false,)

Answers
D.

def enable_function(Loopback1, true, ‘iana-if-type:softwareLoopback’)

D.

def enable_function(Loopback1, true, ‘iana-if-type:softwareLoopback’)

Answers
Suggested answer: D
Total 471 questions
Go to page: of 48