Cisco (300-910-DEVOPS) Exam Questions And Answers page 3
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?
ENTRYPOINT [ /usr/sbin/apache2ctl , -D , FOREGROUND ]
ENTRYPOINT [ BACKGROUND , -D , /usr/sbin/apache2ctl ]
ENTRYPOINT {usr/sbin/apache2ctl}
Automation and Orchestration
DevOps Toolchain
A DevOps engineer must validate the working state of the network before implementing a CI/CD pipeline model. Which configuration management tool is designed to accomplish this?
Travis CI
Jenkins
Genie CLI
Python YAML data libraries
DevOps Principles and Practices
Continuous Integration and Deployment
Which Docker command is used to start an interactive Bash shell in a running container named test ?
docker attach -it test /bin/bash
docker run -it test /bin/bash
docker exec -it test /bin/bash
docker run test /bin/bash
Automation and Orchestration
Automation and Orchestration
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?
ReplicaSet
PriorityClass
Deployment
Pod
Automation and Orchestration
Automation and Orchestration
A company has experienced serious growth and the hosted applications are getting more and more hits. Based on the increased work load, applications have started to show signs of reduced performance, which is affecting the user experience.
Which two server metrics should be tracked to ensure that the customer experience remains within acceptable limits? (Choose two.)
Which two server metrics should be tracked to ensure that the customer experience remains within acceptable limits? (Choose two.)
application feature sprawl
CPU peak usage
CPU average usage
microservices count
CPU frequency
Automation and Orchestration
DevOps Toolchain
What is the accurate description of a canary deployment?
Single Choice
Which description of a canary deployment is true?
deployment by accident
deployment that is rolled back automatically after a configurable amount of minutes
deployment relating to data mining development
deployment to a limited set of servers or users
Automation and Orchestration
Continuous Integration and Deployment
Which type of testing should be integrated into a CI/CD pipeline to ensure the correct behavior of all of the modules in the source code that were developed using TDD?
soak testing
unit testing
load testing
volume testing
Automation and Orchestration
Continuous Integration and Deployment
A developer is nearing the end of a software development cycle and is ready to deploy the software. The customer wants to continue using a secure software development lifecycle methodology and must plan for postproduction components. Which two areas should be the developer address? (Choose two.)
performing code reviews
requirement gathering
change management process
new code scanning
rollback plans
DevOps Principles and Practices
DevOps Security
An end user is seeing long web page load times on the internal business application that they are trying to view. The user is seeing this issue across multiple web browsers, and other users encounter the same issue. Which action should the system administrator take to start looking for the cause of this issue?
Check to make sure Nginx is running.
Check for response times in Nginx logs.
Check to make sure the web API response is coming back in JSON.
Check the size of the database that the application is using.
Automation and Orchestration
Automation and Orchestration
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?
show_ip_int_brief[ stdout_lines ][0]
show_ip_int_brief[ stdout_lines ][1:]
show_ip_int_brief[ stdout_lines ][0][1:]
show_ip_int_brief[ stdout_lines ]
Automation and Orchestration
Automation and Orchestration
Comments