ExamGecko
Home Home / Cisco / 300-910

Cisco 300-910 Practice Test - Questions Answers, Page 3

Question list
Search
Search

Related questions











Fill in the blanks to complete the statement.

When creating multiple containers, in order to allow communication with each other, you must create a_____________ of type _____________.

A.

pod, volume

A.

pod, volume

Answers
Suggested answer: A

Refer to the exhibit.

What is the reason for this error message?

A.

The required dependencies for the urllib3 module are not installed.

A.

The required dependencies for the urllib3 module are not installed.

Answers
B.

The requests module is not installed.

B.

The requests module is not installed.

Answers
C.

The required dependencies for the requests module are not installed.

C.

The required dependencies for the requests module are not installed.

Answers
D.

The site-packages directory has been corrupted.

D.

The site-packages directory has been corrupted.

Answers
Suggested answer: C

What is the effective way to manage computing costs in a public cloud?

A.

Monitor data transfers to minimize cost.

A.

Monitor data transfers to minimize cost.

Answers
B.

Use dedicated hardware for all instances.

B.

Use dedicated hardware for all instances.

Answers
C.

Select the largest instance option available in order to pay for only one instance.

C.

Select the largest instance option available in order to pay for only one instance.

Answers
D.

Make use of elastic services and scale on demand.

D.

Make use of elastic services and scale on demand.

Answers
Suggested answer: D

ConfigMap keys have been mapped to different file names using the volumes.configMap.items field.

What is the result if a wrong ConfigMap key is specified?

A.

The default path is not used.

A.

The default path is not used.

Answers
B.

The volume is not created.

B.

The volume is not created.

Answers
C.

The volume is created.

C.

The volume is created.

Answers
D.

The volume is created with errors.

D.

The volume is created with errors.

Answers
Suggested answer: B

Explanation:

If a wrong ConfigMap key is specified, the volume will not be created since the ConfigMap key must match the name of the item specified in the volumes.configMap.items field.

What are two benefits of Infrastructure as Code? (Choose two.)

A.

It enables continuous integration.

A.

It enables continuous integration.

Answers
B.

It allows for management control.

B.

It allows for management control.

Answers
C.

It ensures consistency.

C.

It ensures consistency.

Answers
D.

It improves application monitoring.

D.

It improves application monitoring.

Answers
E.

It reduces risk.

E.

It reduces risk.

Answers
Suggested answer: C, E

Refer to the exhibit.

What is the user doing with Drone in this automated test?

A.

testing Alpine Linux versus Ubuntu Linux

A.

testing Alpine Linux versus Ubuntu Linux

Answers
B.

testing a PostgreSQL DB against multiple architectures

B.

testing a PostgreSQL DB against multiple architectures

Answers
C.

testing only the amd64 architecture

C.

testing only the amd64 architecture

Answers
D.

testing PostgreSQL deployment in an Alpine Linux VM

D.

testing PostgreSQL deployment in an Alpine Linux VM

Answers
Suggested answer: D

An interface on a router as a Layer 3 link has been configured to another device by updating an Ansible playbook that is executed via a CI/CD pipeline. The Ansible playbook was written to push the configuration change using the ios_config module. Which automated test validates that the interface is functioning as it should?

A.

Add a pipeline step that runs the playbook a second type. If it does not modify the device on the second run, then the interface is correctly configured.

A.

Add a pipeline step that runs the playbook a second type. If it does not modify the device on the second run, then the interface is correctly configured.

Answers
B.

Automated testing is already built in because the playbook execution is successful only after Ansible validates that it applied the change.

B.

Automated testing is already built in because the playbook execution is successful only after Ansible validates that it applied the change.

Answers
C.

Add a pipeline step that captures and parses the packet flow for the interface.

C.

Add a pipeline step that captures and parses the packet flow for the interface.

Answers
D.

Add a pipeline step that captures and parses the show ip interface output so that the operational state can be referenced.

D.

Add a pipeline step that captures and parses the show ip interface output so that the operational state can be referenced.

Answers
Suggested answer: B

Explanation:

Adding a pipeline step that captures and parses the show ip interface output so that the operational state can be referenced is the best way to validate that the interface is functioning as it should. This can be done by using the ioscommand module to capture the output of the show ip interface command, and then using the iosparse module to parse the output and extract the relevant interface information. The ios_parse module allows you to validate the interface state, to ensure that it is up and running as expected. Reference: Cisco Implementing DevOps Solutions and Practices using Cisco Platforms (DEVOPS) Study Manual, Chapter 6, Section 6.3.6.

Which two characteristics of a build tool that is used in an automated build pipeline? (Choose two.)

A.

It runs unit tests against code that is committed.

A.

It runs unit tests against code that is committed.

Answers
B.

It builds your software on the production environment.

B.

It builds your software on the production environment.

Answers
C.

It builds your software when changes are committed.

C.

It builds your software when changes are committed.

Answers
D.

It builds your software every 500 milliseconds.

D.

It builds your software every 500 milliseconds.

Answers
E.

It must have a plug-in for Puppet and Maven.

E.

It must have a plug-in for Puppet and Maven.

Answers
Suggested answer: B, C

Explanation:

The two characteristics of a build tool that is used in an automated build pipeline are A) it builds your software when changes are committed and B) it runs unit tests against code that is committed.

Automated build tools are used to detect changes to source code and then build the software that resulted from the change. Additionally, these tools can be configured to run unit tests against the code to ensure that it works as expected.

When DevOps practices are integrated into an existing organization, which two characteristics are positive indicators of DevOps maturity? (Choose two.)

A.

mean time between success

A.

mean time between success

Answers
B.

mean time to recover

B.

mean time to recover

Answers
C.

cone testing

C.

cone testing

Answers
D.

change lead time

D.

change lead time

Answers
E.

age of codebase

E.

age of codebase

Answers
Suggested answer: B, D

Explanation:

Change lead time is the amount of time it takes for a proposed change to go from the idea phase to being fully deployed in production. This metric can be used to measure the speed and efficiency with which changes are implemented, which is often indicative of an organization's DevOps maturity.

Mean time to recover (MTTR) is the average amount of time it takes to restore a service or application to its working state when an issue arises. MTTR is an important metric for measuring the resilience of an organization's infrastructure, and is another indicator of DevOps maturity. (Source: Cisco Implementing DevOps Solutions and Practices using Cisco Platforms (DEVOPS) Study Manual Chapter 1, Understanding DevOps)

Which two statements about Infrastructure as Code are true? (Choose two.)

A.

Test-driven development practices make use of Infrastructure as Code.

A.

Test-driven development practices make use of Infrastructure as Code.

Answers
B.

Infrastructure as Code refers to automated testing libraries.

B.

Infrastructure as Code refers to automated testing libraries.

Answers
C.

DevOps builds upon Infrastructure as Code.

C.

DevOps builds upon Infrastructure as Code.

Answers
D.

Infrastructure as Code is based on practices from software development.

D.

Infrastructure as Code is based on practices from software development.

Answers
E.

Infrastructure as Code must use the same programming language as the application.

E.

Infrastructure as Code must use the same programming language as the application.

Answers
Suggested answer: C, D

Explanation:

(IaC) is a practice that allows for the automation of infrastructure configuration and deployment, allowing DevOps teams to deploy and manage infrastructure with the same release pipelines and versioning as source code [1]. IaC is based on practices from software development, and promotes the use of automation and repeatable processes to ensure consistency of deployments.

Total 128 questions
Go to page: of 13