« 返回题库列表CCNP 350-801历年真题与模拟测试,Cisco Collaboration 350-801 CLCOR | 思博网络
解锁通往Cisco CCNP之路的通道吧。
350-801通过我们的优质模拟测试以及真实的考试模拟,您可以获得CLCOR认证。我们精心制作的考试材料包含了各种样题、模拟考试以及与真实考试相同的试题和答案。通过这种方式,您可以获得宝贵的实践经验。
在线这是一款模拟真实测试环境的考试练习工具。通过我们的深入备考资源,您可以提升自己的信心。这些资源涵盖了从基础设施设计到呼叫控制、服务质量以及应用程序等方面的核心协作概念。借助我们的优质服务,您将拥有必要的知识和技能来应对CLCOR考试中的各种挑战。
问题 #1
What is the reason for this error message?
A. The required dependencies for the urllib3 module are not installed.
B. The requests module is not installed.
C. The required dependencies for the requests module are not installed.
D. The site-packages directory has been corrupted.
问题 #2
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?
A. Check to make sure Nginx is running.
B. Check for response times in Nginx logs.
C. Check to make sure the web API response is coming back in JSON.
D. Check the size of the database that the application is using.
问题 #3
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.)
A. application feature sprawl
B. CPU peak usage
C. CPU average usage
D. microservices count
E. CPU frequency
问题 #4
Which type of security testing should be performed as a part of a CI/CD pipeline by analyzing the source code itself without compiling the code into a running executable?
A. Dynamic Application Security Testing
B. Runtime Application Health-Protection
C. Continuous Application Security Testing
D. Static Analysis Security Testing
问题 #5
How long analysis systems such as Elasticsearch, Logstash, and Kibana Stack handle ingesting unstructured logs from different devices in various formats?
A. All devices that generate syslogs must use agents that process the local logs and transmit them in a specific format to the ELK Stack.
B. All logs are stored in their unstructured text format, and the ELK Stack performs data analysis by intelligently parsing the logs using machine learning algorithms.
C. All different message formats are parsed separately using custom filters, and the resulting structured data is stored for later analysis.
D. A single, comprehensive log format is defined on the ELK Stack. All incoming logs, regardless of format, are transformed to match the comprehensive format, and only applicable fields are populated.
问题 #6
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
B. mean time to recover
C. cone testing
D. change lead time
E. age of codebase
问题 #7
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. node
B. app
C. agentD. tier
E. event
问题 #8
What is chaos engineering?
A. designing an application with fuzzy logic that makes it hard to predict
B. a product engineering approach that lacks a formal methodology
C. splitting a project between teams that do not communicate with each other
D. introducing problems into a system to study behavior and improve reliability
问题 #9
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.
问题 #10
Microservices architecture pattern has been applied and the system has been architected as a set of services. Each service is deployed as a set of instances for throughput and availability. In which two ways are these services packaged and deployed? (Choose two.)
A. Service instances must be isolated from one another.
B. Service must be independently deployable and scalable.
C. Service are written using the same languages, frameworks, and framework versions.
D. Service must be dependent, deployable, and scalable.
E. Service instances do not need to be isolated from one another.
问题 #11
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
B. ENTRYPOINT [“/usr/sbin/apache2ctl”, “-D”, “FOREGROUND”]
C. ENTRYPOINT [“BACKGROUND”, “-D”, “/usr/sbin/apache2ctl”]
D. ENTRYPOINT {usr/sbin/apache2ctl}
问题 #12
Which method is a safe way to provide a username/password combination to an application running as a service in a Docker container?
A. encode the value with base64 in a secure DNS CTEXT entry
B. as an environment variable in the Dockerfile
C. Docker environment variable
D. Docker secrets
问题 #13
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.
B. Automated testing is already built in because the playbook execution is successful only after Ansible validates that it applied the change.
C. Add a pipeline step that captures and parses the packet flow for the interface.
D. Add a pipeline step that captures and parses the show ip interface output so that the operational state can be referenced.
问题 #14
When static routes are added to a router in a network using a CI/CD pipeline, an Ansible playbook is used to make these changes. Which steps must be added to the pipeline to validate that the changes have the intended effect on the traffic flow?
A. Add a step to run the debug ip routing command before the change, and add a step after the change to issue the no debug ip routing command.
B. Add a step to capture the routing table before the change, and add a step after the change to capture it again. Calculate the difference between the two for review.
C. Add a step to ping a host on each of the static routes before the change, and a step after to repeat the same check. Calculate the difference between the two checks for review.
D. Add a step to run the same playbook again with the debug option enabled and use grep on the log output to ensure that the commands are not applied again.
问题 #15
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.
B. It builds your software on the production environment.
C. It builds your software when changes are committed.
D. It builds your software every 500 milliseconds.
E. It must have a plug-in for Puppet and Maven.
问题 #16
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’][0]
B. show_ip_int_brief[‘stdout_lines’][1:]
C. show_ip_int_brief[‘stdout_lines’][0][1:]
D. show_ip_int_brief[‘stdout_lines’]
问题 #17
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.
B. The volume is not created.
C. The volume is created.
D. The volume is created with errors.
问题 #18
Which interface is most commonly used to integrate logging, monitoring, and alerting applications into your CI/CD pipeline?
A. AMQP
B. SNMP
C. SSH
D. REST
问题 #19
A developer needs to scale the existing pods within the worked nodes. Which object should be edited to achieve this goal?
A. ReplicaSet
B. PriorityClass
C. Deployment
D. Pod
问题 #20
A user wants to deploy a new service to a Kubernetes cluster. Which two commands accomplish this goal? (Choose two.)
A. Apply
B. Install
C. Deploy
D. Create
E. Expose
问题 #21
A DevOps engineer has built a new container and must open port 8080 for intercontainer communication. Which command must be added in a Dockerfile to accomplish this goal?
A. EXPOSE 8080
B. FIREWALL ADD-PORT 8080
C. PORT 8080
D. OPEN PORT 8080
问题 #22
What is the user doing with Drone in this automated test?
A. testing Alpine Linux versus Ubuntu Linux
B. testing a PostgreSQL DB against multiple architectures
C. testing only the amd64 architecture
D. testing PostgreSQL deployment in an Alpine Linux VM
问题 #23
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.)
A. performing code reviews
B. requirement gathering
C. change management process
D. new code scanning
E. rollback plans
问题 #24
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
B. passive
C. active-passive
D. active-active