Validate your Skills with Updated 300-910 Exam Questions & Answers and Test Engine [Q31-Q51]

Share

Validate your Skills with Updated 300-910 Exam Questions & Answers and Test Engine

Tested & Approved 300-910 Study Materials Download Free Updated 130 Questions

NEW QUESTION # 31
DRAG DROP
Construct an Ansible script to gather information about target routers and then use it to apply no ip redirects to every interface on each device. Drag and drop the code from the bottom onto the correct location in the exhibit to complete the tasks section of the Ansible playbook so that it accomplishes your goal.
Select and Place:

Answer:

Explanation:

Section: Automating Infrastructure


NEW QUESTION # 32
Which Docker command is used to start an interactive Bash shell in a running container named "test"?

  • A. docker attach -it test /bin/bash
  • B. docker run test /bin/bash
  • C. docker run -it test /bin/bash
  • D. docker exec -it test /bin/bash

Answer: D

Explanation:
Section: Packaging and Delivery of Applications


NEW QUESTION # 33
Drag and drop the code from the bottom onto the box where the code is missing to post a message to a Cisco Webex space. Not all options are used.

Answer:

Explanation:

Explanation
1. Authorization
2. rooms
3. messages
4. data


NEW QUESTION # 34
Refer to the exhibit.

The exhibit shows the output of an Ansible task that prints the contents of the show_ip_int_brief variable that was registered in a different task in the playbook.
Which expression is used to print the output of the command without its header row?

  • A. show_ip_int_brief['stdout_lines'][1:]
  • B. show_ip_int_brief['stdout_lines']
  • C. show_ip_int_brief['stdout_lines'][0]
  • D. show_ip_int_brief['stdout_lines'][0][1:]

Answer: A


NEW QUESTION # 35
A DevOps engineer has built a container to host a web-server and it must run as an executable. Which command must be configured in a Dockerfile to accomplish this goal?

  • A. ENTRYPOINT <usr/sbin/apache2ctl>
  • B. ENTRYPOINT {usr/sbin/apache2ctl}
  • C. ENTRYPOINT ["/usr/sbin/apache2ctl", "-D", "FOREGROUND"]
  • D. ENTRYPOINT ["BACKGROUND", "-D", "/usr/sbin/apache2ctl"]

Answer: C

Explanation:
Section: Packaging and Delivery of Applications


NEW QUESTION # 36
The E-commerce application is being monitored using AppDynamics. AppDynamics has noticed that the application response has degraded and has identified some thread contention that might be the cause of the delays.
Where in the interface does AppDynamics bring this to your attention?

  • A. Slow Calls and Errors tab of the application
  • B. Code Deadlock section of the Event List
  • C. Transaction Score graph of a business transaction
  • D. Potential Issues section of an individual transaction

Answer: D


NEW QUESTION # 37

Refer to the exhibit. A developer needs to scale the existing pods within the worked nodes. Which object should be edited to achieve this goal?

  • A. Deployment
  • B. ReplicaSet
  • C. PriorityClass
  • D. Pod

Answer: B

Explanation:
Section: Automating Infrastructure


NEW QUESTION # 38
Refer to the exhibit.

A Python script implements a logger server. The log receives a message from Base that contains this text: TextMessage. How is the log formatted?

  • A. Base Alter: TextMessage
  • B. Undefined: TextMessageBase
  • C. TextMessage -> Alter Base
  • D. TextMessage -> Base

Answer: B


NEW QUESTION # 39
Refer to the exhibit.

What is the reason for this error message?

  • A. The requests module is not installed.
  • B. The required dependencies for the urllib3 module are not installed.
  • C. The site-packages directory has been corrupted.
  • D. The required dependencies for the requests module are not installed.

Answer: A


NEW QUESTION # 40

Refer to the exhibit. The exhibit shows the output of an Ansible task that prints the contents of the show_ip_int_brief variable that was registered in a different task in the playbook.
Which expression is used to print the output of the command without its header row?

  • A. show_ip_int_brief['stdout_lines'][1:]
  • B. show_ip_int_brief['stdout_lines']
  • C. show_ip_int_brief['stdout_lines'][0]
  • D. show_ip_int_brief['stdout_lines'][0][1:]

Answer: A

Explanation:
Section: Automating Infrastructure
Explanation


NEW QUESTION # 41
A developer wants to deploy a highly available web server cluster and decides to put a load balancer in front of multiple clustered nodes that run the same web service. The goal is for the load balancer to take in users and distribute the load across the whole cluster.
What kind of high-availability configuration is the developer running?

  • A. active-passive
  • B. active-active
  • C. passive
  • D. active

Answer: A


NEW QUESTION # 42

Refer to the exhibit. What is causing the requests code to fail?

  • A. Rython3 is not compatible with requests.
  • B. The requests library is not imported.
  • C. The requests library is not installed.
  • D. The requests coming into stdin fail because device_ip cannot be parsed.

Answer: B

Explanation:
Section: CI/CD Pipeline
Explanation/Reference:


NEW QUESTION # 43
Which two statements about Infrastructure as Code are true? (Choose two.)

  • A. Test-driven development practices make use of Infrastructure as Code.
  • B. Infrastructure as Code must use the same programming language as the application.
  • C. Infrastructure as Code refers to automated testing libraries.
  • D. DevOps builds upon Infrastructure as Code.
  • E. Infrastructure as Code is based on practices from software development.

Answer: D,E

Explanation:
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.


NEW QUESTION # 44
What are two advantages of using Configuration Management Tools? (Choose two.)

  • A. reduction in networking team skills
  • B. reduction of on-premises networking equipment
  • C. reduction in network changes already performed automatically
  • D. reduction in policy violations caused by human errors
  • E. reduction in administration costs

Answer: D,E

Explanation:
Configuration Management Tools allow for automated configuration of networking equipment, which helps to reduce human errors and the time and money needed to manage and configure the equipment. For example, Cisco Configuration Professional (CCP) is a configuration management tool that provides automated configuration, validation, and troubleshooting of network infrastructure devices. CCP enables administrators to configure and deploy network changes quickly and efficiently, while also reducing the costs associated with manual configuration and troubleshooting.


NEW QUESTION # 45
The IaC configuration for an application is being deployed using a CI/CD pipeline. Drag and drop the steps for this pipeline from the left into the correct order that they would be executed on the right. Not all options are used.

Answer:

Explanation:


NEW QUESTION # 46
Configuration changes to the production network devices are performed by a CI/CD pipeline. The code repository and the CI tool are running on separate servers. Some configuration changes are pushed to the code repository, but the pipeline did not start.
Why did the pipeline fail to start?

  • A. The webhook call from the code repository did not reach the CI server.
  • B. The pipeline must be started manually after the code repository is updated.
  • C. The CI server was not configured as a Git remote for the repository.
  • D. Configuration changes must be sent to the pipeline, which then updates the repository.

Answer: A

Explanation:
A webhook is basically a callback URL that is triggered when certain events occur, such as a code commit. If the webhook call from the code repository does not reach the CI server, then the pipeline will not start. According to the Cisco Implementing DevOps Solutions and Practices using Cisco Platforms (DEVOPS) Study Manual, "A webhook is a web-based feature that enables a remote service to communicate with a local service, usually through a web server. Webhooks are used to trigger an action when a specific event occurs, usually in a remote service or application."


NEW QUESTION # 47
Refer to the Exhibit.
Drag and drop the code snippets from the bottom onto the boxes in the code in the Ansible playbook to restart multiple services in the correct sequence Not all options are used

Answer:

Explanation:


NEW QUESTION # 48
AppDynamics is being used to monitor your distributed Python application. Each individual container of the application is instrumented with an AppD agent. Which two configuration variables uniquely determine the module being monitored? (Choose two.)

  • A. agent
  • B. tier
  • C. app
  • D. node
  • E. event

Answer: B,D

Explanation:
Appdynamics Agents Install Wizard Step 2 Enter the configuration values... https://docs.appdynamics.com/appd/4.5.x/en/application-monitoring/install-app-server-agents#InstallAppServerAgents-UsetheGettingStartedWizard Tier and Node Naming Guidelines https://docs.appdynamics.com/appd/4.5.x/en/application-monitoring/install-app-server-agents#InstallAppServerAgents-tier-node-namingTierandNodeNamingGuidelines


NEW QUESTION # 49
Which interface is most commonly used to integrate logging, monitoring, and alerting applications into your CI/ CD pipeline?

  • A. REST
  • B. AMQP
  • C. SSH
  • D. SNMP

Answer: C

Explanation:
Section: Logging, Monitoring, and Metrics


NEW QUESTION # 50
Which Dockerfile yields the most predictable builds?

  • A.
  • B.
  • C.
  • D.

Answer: B


NEW QUESTION # 51
......


Cisco 300-910 exam is designed for IT professionals who want to validate their skills and knowledge in implementing DevOps solutions using Cisco platforms. DevOps is a software development methodology that emphasizes collaboration and communication between development and operations teams. It involves automating the software delivery process to achieve faster and more reliable releases. Cisco platforms provide a range of tools and technologies that can help organizations implement DevOps practices.

 

Regular Free Updates 300-910 Dumps Real Exam Questions Test Engine: https://www.pass4leader.com/Cisco/300-910-exam.html

Practice Test Questions Verified Answers As Experienced in the Actual Test!: https://drive.google.com/open?id=13qrdYuplU8dBmaQg6nBHxgyEjDuWP1rD