Download Professional Cloud DevOps Engineer.Professional-Cloud-DevOps-Engineer.VCEplus.2024-01-15.50q.vcex

Vendor: Google
Exam Code: Professional-Cloud-DevOps-Engineer
Exam Name: Professional Cloud DevOps Engineer
Date: Jan 15, 2024
File Size: 43 KB
Downloads: 5

How to open VCEX files?

Files with VCEX extension can be opened by ProfExam Simulator.

Demo Questions

Question 1
You support a Node.js application running on Google Kubernetes Engine (GKE) in production. The application makes several HTTP requests to dependent applications. You want to anticipate which dependent applications might cause performance issues. What should you do? 
  1. Instrument all applications with Stackdriver Profiler. 
  2. Instrument all applications with Stackdriver Trace and review inter-service HTTP requests. 
  3. Use Stackdriver Debugger to review the execution of logic within each application to instrument all applications. 
  4. Modify the Node.js application to log HTTP request and response times to dependent applications. Use Stackdriver Logging to find dependent applications that are performing poorly. 
Correct answer: B
Question 2
You created a Stackdriver chart for CPU utilization in a dashboard within your workspace project. You want to share the chart with your Site Reliability Engineering (SRE) team only. You want to ensure you follow the principle of least privilege. What should you do? 
  1. Share the workspace Project ID with the SRE team. Assign the SRE team the Monitoring Viewer IAM role in the workspace project. 
  2. Share the workspace Project ID with the SRE team. Assign the SRE team the Dashboard Viewer IAM role in the workspace project. 
  3. Click “Share chart by URL” and provide the URL to the SRE team. Assign the SRE team the Monitoring Viewer IAM role in the workspace project. 
  4. Click “Share chart by URL” and provide the URL to the SRE team. Assign the SRE team the Dashboard Viewer IAM role in the workspace project. 
Correct answer: A
Question 3
Your organization wants to implement Site Reliability Engineering (SRE) culture and principles. Recently, a service that you support had a limited outage. A manager on another team asks you to provide a formal explanation of what happened so they can action remediations. What should you do? 
  1. Develop a postmortem that includes the root causes, resolution, lessons learned, and a prioritized list of action items. Share it with the manager only. 
  2. Develop a postmortem that includes the root causes, resolution, lessons learned, and a prioritized list of action items. Share it on the engineering organization's document portal. 
  3. Develop a postmortem that includes the root causes, resolution, lessons learned, the list of people responsible, and a list of action items for each person. Share it with the manager only. 
  4. Develop a postmortem that includes the root causes, resolution, lessons learned, the list of people responsible, and a list of action items for each person. Share it on the engineering organization's document portal. 
Correct answer: B
Question 4
You have a set of applications running on a Google Kubernetes Engine (GKE) cluster, and you are using Stackdriver Kubernetes Engine Monitoring. You are bringing a new containerized application required by your company into production. 
This application is written by a third party and cannot be modified or reconfigured. The application writes its log information to /var/log/app_messages.log, and you want to send these log entries to Stackdriver Logging. What should you do? 
  1. Use the default Stackdriver Kubernetes Engine Monitoring agent configuration. 
  2. Deploy a Fluentd daemonset to GKE. Then create a customized input and output configuration to tail the log file in the application's pods and write to Stackdriver Logging. 
  3. Install Kubernetes on Google Compute Engine (GCE) and redeploy your applications. Then customize the built-in Stackdriver Logging configuration to tail the log file in the application's pods and write to Stackdriver Logging. 
  4. Write a script to tail the log file within the pod and write entries to standard output. Run the script as a sidecar container with the application's pod. Configure a shared volume between the containers to allow the script to have read accessto /var/log in the application container. 
Correct answer: B
Question 5
You are running an application in a virtual machine (VM) using a custom Debian image. The image has the Stackdriver Logging agent installed. The VM has the cloud-platform scope. The application is logging information via syslog. 
You want to use Stackdriver Logging in the Google Cloud Platform Console to visualize the logs. You notice that syslog is not showing up in the "All logs" dropdown list of the Logs Viewer. What is the first thing you should do? 
  1. Look for the agent’s test log entry in the Logs Viewer. 
  2. Install the most recent version of the Stackdriver agent. 
  3. Verify the VM service account access scope includes the monitoring.write scope. 
  4. SSH to the VM and execute the following commands on your VM: ps ax | grep fluentd
Correct answer: D
Question 6
You use a multiple step Cloud Build pipeline to build and deploy your application to Google Kubernetes Engine (GKE). You want to integrate with a third-party monitoring platform by performing a HTTP POST of the build information to a webhook. You want to minimize the development effort. What should you do? 
  1. Add logic to each Cloud Build step to HTTP POST the build information to a webhook. 
  2. Add a new step at the end of the pipeline in Cloud Build to HTTP POST the build information to a webhook. 
  3. Use Stackdriver Logging to create a logs-based metric from the Cloud Build logs. Create an Alert with a Webhook notification type. 
  4. Create a Cloud Pub/Sub push subscription to the Cloud Build cloud-builds PubSub topic to HTTP POST the build information to a webhook. 
Correct answer: D
Question 7
You use Spinnaker to deploy your application and have created a canary deployment stage in the pipeline. Your application has an in-memory cache that loads objects at start time. You want to automate the comparison of the canary version against the production version. How should you configure the canary analysis? 
  1. Compare the canary with a new deployment of the current production version. 
  2. Compare the canary with a new deployment of the previous production version. 
  3. Compare the canary with the existing deployment of the current production version. 
  4. Compare the canary with the average performance of a sliding window of previous production versions. 
Correct answer: D
Question 8
You support a high-traffic web application and want to ensure that the home page loads in a timely manner. As a first step, you decide to implement a Service Level Indicator (SLI) to represent home page request latency with an acceptable page load time set to 100 ms. What is the Google-recommended way of calculating this SLI? 
  1. Bucketize the request latencies into ranges, and then compute the percentile at 100 ms. 
  2. Bucketize the request latencies into ranges, and then compute the median and 90th percentiles. 
  3. Count the number of home page requests that load in under 100 ms, and then divide by the total number of home page requests. 
  4. Count the number of home page request that load in under 100 ms, and then divide by the total number of all web application request. 
Correct answer: C
Question 9
You deploy a new release of an internal application during a weekend maintenance window when there is minimal user tragic. After the window ends, you learn that one of the new features isn't working as expected in the production environment. After an extended outage, you roll back the new release and deploy a fix. You want to modify your release process to reduce the mean time to recovery so you can avoid extended outages in the future. What should you do? 
(Choose two.) 
  1. Before merging new code, require 2 different peers to review the code changes. 
  2. Adopt the blue/green deployment strategy when releasing new code via a CD server. 
  3. Integrate a code linting tool to validate coding standards before any code is accepted into the repository. 
  4. Require developers to run automated integration tests on their local development environments before release. 
  5. Configure a CI server. Add a suite of unit tests to your code and have your CI server run them on commit and verify any changes. 
Correct answer: AC
Question 10
You have a pool of application servers running on Compute Engine. You need to provide a secure solution that requires the least amount of configuration and allows developers to easily access application logs for troubleshooting. How would you implement the solution on GCP? 
  1. Deploy the Stackdriver logging agent to the application servers. 
    Give the developers the IAM Logs Viewer role to access Stackdriver and view logs.
  2. Deploy the Stackdriver logging agent to the application servers. 
    Give the developers the IAM Logs Private Logs Viewer role to access Stackdriver and view logs.
  3. Deploy the Stackdriver monitoring agent to the application servers. 
    Give the developers the IAM Monitoring Viewer role to access Stackdriver and view metrics.
  4. Install the gsutil command line tool on your application servers. 
    Write a script using gsutil to upload your application log to a Cloud Storage bucket, and then schedule it to run via cron every 5 minutes. 
    Give the developers the IAM Object Viewer access to view the logs in the specified bucket. 
Correct answer: B
HOW TO OPEN VCE FILES

Use VCE Exam Simulator to open VCE files
Avanaset

HOW TO OPEN VCEX AND EXAM FILES

Use ProfExam Simulator to open VCEX and EXAM files
ProfExam Screen

ProfExam
ProfExam at a 20% markdown

You have the opportunity to purchase ProfExam at a 20% reduced price

Get Now!