The Best Google Associate-Cloud-Engineer Study Guides and Dumps of 2021
Top Google Associate-Cloud-Engineer Exam Audio Study Guide! Practice Questions Edition
Books and Additional Resources
There are various books on Amazon that can help you prepare for the Google Associate Cloud Engineer test such as:
- One of the most recommended books is the Official Google Cloud Certified Associate Cloud Engineer Study Guide (1st Edition) by Dan Sullivan. This study guide presents everything you need to know to pass this crucial exam. You can master the knowledge required to obtain the Google Cloud Engineer certification and demonstrate your skillset needed to operate and deploy services, infrastructure, and networks in Google Cloud. The book prepares you to step-by-step studies with a pre-book official test to evaluate what you know before you start, exam objectives, and review questions in each chapter. Moreover, you will access the online learning environment, which will help you sharpen your knowledge with practice tests.
- Google Cloud: GCP: Google Cloud Platform: Associate Cloud Engineer Practice Test 2021 by Anthony Stewart. This book is an A to Z guide that efficiently teaches the skills that are required by the Associate Cloud Engineer certification. Thus, it covers topics such as management of enterprise solutions, deploying applications, and monitoring operations. At the same time, this is a good book for beginners as it does not require students to already have previous experience, going in. It also aids potential test-takers to demonstrate their skills through a certification exam that requires the ability to use the command-line and the GCP console to perform many general platform-based tasks.
- Google Certified Associate Cloud Engineer Technology workbook by IP specialist. This book will help you enhance your ability to understand monitoring operations, deploying applications, and managing enterprise solutions. So, you will gain in-depth knowledge in using the GCP Console and the CLI to perform common platform-based tasks for the maintenance of one or more deployed solutions that leverage services on Google Cloud.
- Google Cloud Certified Associate Cloud Engineer All-in-One Exam Guide 1st Edition by Jack Hyman. This book is written by a cloud computing expert and educator in this field. By ordering this edition from Amazon, you will get an exam guide based on proven experience and containing unique techniques that supply and reinforce practical skills through precise practice questions and detailed explanations of answers. Thus, you can gain confidence in planning, setting up, and configuring GCP; ensuring effective operation, and administering access and security, which helps you to pass the Associate Cloud Engineer exam on your first attempt.
- Google Cloud Certified Associate Cloud Engineer Certification Guide 1: Learn with challenge labs, assessment tests and practice exams to build innovations and real-life experiences by A. B. Lawal. This study guide is one of the most up-to-date books that can get you from the current level you are at, to passing the Google Associate Cloud Engineer certification exam. All of this is due to the fact that this book has additional tasks such as challenge labs, assessment tests bank, and flashcard banks to raise your self-assurance. Moreover, it also offers practice exam questions along with their correct answers and remarks as well as downloadable screenshots and summaries for quick exam revision to fully prepare you.
NEW QUESTION 11
You have a Compute Engine instance hosting an application used between 9 AM and 6 PM on weekdays. You want to back up this instance daily for disaster recovery purposes. You want to keep the backups for 30 days.
You want the Google-recommended solution with the least management overhead and the least number of services. What should you do?
- A. 1. Update your instances' metadata to add the following value: snapshot-schedule: 0 1 * * *
2. Update your instances' metadata to add the following value: snapshot-retention: 30 - B. 1. Create a Cloud Function that creates a snapshot of your instance's disk.
2.Create a Cloud Function that deletes snapshots that are older than 30 days.
3.Use Cloud Scheduler to trigger both Cloud Functions daily at 1:00 AM. - C. 1. In the Cloud Console, go to the Compute Engine Disks page and select your instance's disk.
2. In the Snapshot Schedule section, select Create Schedule and configure the following parameters:
-Schedule frequency: Daily
-Start time: 1:00 AM - 2:00 AM
-Autodelete snapshots after 30 days - D. 1. Create a bash script in the instance that copies the content of the disk to Cloud Storage.
2.Create a bash script in the instance that deletes data older than 30 days in the backup Cloud Storage bucket.
3.Configure the instance's crontab to execute these scripts daily at 1:00 AM.
Answer: C
NEW QUESTION 12
2. Your auditor wants to view your organization's use of data in Google Cloud. The auditor is most interested in auditing who accessed data in Cloud Storage buckets. You need to help the auditor access the data they need. What should you do?
- A. Assign the appropriate permissions, and then use Cloud Monitoring to review metrics
- B. Assign the appropriate permissions, and then create a Data Studio report on Admin Activity Audit Logs
- C. Turn on Data Access Logs for the buckets they want to audit, and Then build a query in the log viewer that filters on Cloud Storage
- D. Use the export logs API to provide the Admin Activity Audit Logs in the format they want
Answer: A
NEW QUESTION 13
You have an instance group that you want to load balance. You want the load balancer to terminate the client SSL session. The instance group is used to serve a public web application over HTTPS. You want to follow Google-recommended practices. What should you do?
- A. Configure an HTTP(S) load balancer.
- B. Configure an internal TCP load balancer.
- C. Configure an external TCP proxy load balancer.
- D. Configure an external SSL proxy load balancer.
Answer: A
NEW QUESTION 14
Your engineers need to pass database credentials to a Kubernetes Pod. The YAML they're using looks similar to the following:
apiVersion: "extensions/v1beta1"
kind: "Deployment"
metadata:
name: "products-service"
namespace: "default"
labels:
app: "products-service"
spec:
replicas: 3
selector:
matchLabels:
app: "products-service"
template:
metadata:
labels:
app: "products-service"
spec:
containers:
- name: "products"
image: "gcr.io/find-seller-app-dev/products:latest"
env:
- name: "database_user"
value: "admin"
- name: "database_password"
value: "TheB3stP@ssW0rd"
What is Google's recommended best practice for working with sensitive information inside of Kubernetes?
- A. Use an environment variable.
- B. Mount the credentials in a volume.
- C. Store the credentials in a Secret.
- D. Store the credentials in a ConfigMap.
Answer: C
NEW QUESTION 15
Your project has all its Compute Engine resources in the europe-west1 region. You want to set europe-west1 as the default region for gcloud commands. What should you do?
- A. Use "gcloud config set compute/zone europe-west1" to set the default region for future gcloud commands.
- B. Use Cloud Shell instead of the command line interface of your device. Launch Cloud Shell after you navigate to a resource in the europe-west1 region. The europe-west1 region will automatically become the default region.
- C. Create a VPN from on-premises to a subnet in europe-west1, and use that connection when executing gcloud commands.
- D. Use "gcloud config set compute/region europe-west1" to set the default region for future gcloud commands.
Answer: D
Explanation:
A is not correct because Cloud Shell will not default to the location that it's launched from.
B is correct because this will ensure that the relevant region is used when not overwritten by a command parameter.
C is not correct because this command should be used to set a zone, not a region.
D is not correct because a VPN to a specific subnet does not have any effect on the gcloud command region.
https://cloud.google.com/compute/docs/regions-zones/changing-default-zone-region
NEW QUESTION 16
You need to configure IAM access audit logging in BigQuery for external auditors. You want to follow Google-recommended practices. What should you do?
- A. Add the auditors group to two new custom IAM roles.
- B. Add the auditor user accounts to the `logging.viewer' and `bigQuery.dataViewer' predefined IAM roles.
- C. Add the auditors group to the `logging.viewer' and `bigQuery.dataViewer' predefined IAM roles.
- D. Add the auditor user accounts to two new custom IAM roles.
Answer: B
NEW QUESTION 17
Your existing application running in Google Kubernetes Engine (GKE) consists of multiple pods running on four GKE n1-standard-2 nodes. You need to deploy additional pods requiring n2-highmem-16 nodes without any downtime. What should you do?
- A. Create a new cluster with both n1-standard-2 and n2-highmem-16 nodes. Redeploy the pods and delete the old cluster.
- B. Create a new cluster with n2-highmem-16 nodes. Redeploy the pods and delete the old cluster.
- C. Create a new Node Pool and specify machine type n2-highmem-16. Deploy the new pods.
- D. Use gcloud container clusters upgrade. Deploy the new services.
Answer: C
NEW QUESTION 18
You need to update a deployment in Deployment Manager without any resource downtime in the deployment. Which command should you use?
- A. gcloud deployment-manager resources update --config <deployment-config-path>
- B. gcloud deployment-manager deployments create --config <deployment-config- path>
- C. gcloud deployment-manager resources create --config <deployment-config-path>
- D. gcloud deployment-manager deployments update --config <deployment-config- path>
Answer: D
Explanation:
https://cloud.google.com/sdk/gcloud/reference/deployment-manager/deployments/update
NEW QUESTION 19
You need to manage a Cloud Spanner Instance for best query performance. Your instance in production runs in a single Google Cloud region. You need to improve performance in the shortest amount of time. You want to follow Google best practices for service configuration. What should you do?
- A. Create an alert in Cloud Monitoring to alert when the percentage of high priority CPU utilization reaches 65% If you exceed this threshold, add nodes to your instance
- B. Create an alert in Cloud Monitoring to alert when the percentage of high priority CPU utilization reaches 45% If you exceed this threshold, add nodes lo your instance.
- C. Create an alert in Cloud Monitoring to alert when the percentage ot high priority CPU utilization reaches
45% Use database query statistics to
identify queries that result in high CPU usage, and then rewrite those queries to optimize their resource usage - D. Create an alert in Cloud Monitoring to alert when the percentage of high priority CPU utilization reaches 65%. Use database query statistics to identity queries that result in high CPU usage, and then rewrite those queries to optimize their resource usage.
Answer: B
NEW QUESTION 20
You have an application that receives SSL-encrypted TCP traffic on port 443. Clients for this application are located all over the world. You want to minimize latency for the clients. Which load balancing option should you use?
- A. Internal TCP/UDP Load Balancer.
Add a firewall rule allowing ingress traffic from 0.0.0.0/0 on the target instances. - B. HTTPS Load Balancer
- C. Network Load Balancer
- D. SSL Proxy Load Balancer
Answer: D
Explanation:
https://cloud.google.com/load-balancing/docs/ssl
NEW QUESTION 21
You are building a pipeline to process time-series data. Which Google Cloud Platform services should you put in boxes 1,2,3, and 4?
- A. Firebase Messages, Cloud Pub/Sub, Cloud Spanner, BigQuery
- B. Cloud Pub/Sub, Cloud Dataflow, Cloud Datastore, BigQuery
- C. Cloud Pub/Sub, Cloud Dataflow, Cloud Bigtable, BigQuery
- D. Cloud Pub/Sub, Cloud Storage, BigQuery, Cloud Bigtable
Answer: C
NEW QUESTION 22
You have created a code snippet that should be triggered whenever a new file is uploaded to a Cloud Storage bucket. You want to deploy this code snippet. What should you do?
- A. Use Dataflow as a batch job, and configure the bucket as a data source.
- B. Use Google Kubernetes Engine and configure a CronJob to trigger the application using Pub/Sub.
- C. Use Cloud Functions and configure the bucket as a trigger resource.
- D. Use App Engine and configure Cloud Scheduler to trigger the application using Pub/Sub.
Answer: D
Explanation:
https://cloud.google.com/scheduler/docs/tut-pub-sub
NEW QUESTION 23
You are migrating a production-critical on-premises application that requires 96 vCPUs to perform its task. You want to make sure the application runs in a similar environment on GCP. What should you do?
- A. Create the VM using Compute Engine default settings. Use gcloud to modify the running instance to have
96 vCPUs. - B. When creating the VM, use Intel Skylake as the CPU platform.
- C. Start the VM using Compute Engine default settings, and adjust as you go based on Rightsizing Recommendations.
- D. When creating the VM, use machine type n1-standard-96.
Answer: A
NEW QUESTION 24
You need a dynamic way of provisioning VMs on Compute Engine. The exact specifications will be in a dedicated configuration file. You want to follow Google's recommended practices. Which method should you use?
- A. Deployment Manager
- B. Cloud Composer
- C. Managed Instance Group
- D. Unmanaged Instance Group
Answer: C
NEW QUESTION 25
You need to configure optimal data storage for files stored in Cloud Storage for minimal cost. The files are used in a mission-critical analytics pipeline that is used continually. The users are in Boston, MA (United States). What should you do?
- A. Configure regional storage for the region closest to the users.
Configure a Nearline storage class - B. Configure dual-regional storage for the dual region closest to the users.
Configure a Nearline storage class - C. Configure regional storage for the region closest to the users.
Configure a Standard storage class - D. Configure dual-regional storage for the dual region closest to the users.
Configure a Standard storage class
Answer: C
NEW QUESTION 26
You have a Cloud Storage bucket that needs to host static web assets. How do you make the bucket public?
- A. Set allUsers to have the Storage Object Viewer role.
- B. Trick question. Don't ever make a bucket public.
- C. Check the "make public" box in the UI.
- D. gsutil make-public gs://bucket-name
Answer: A
NEW QUESTION 27
Your development team has asked for your help. They need a simple, reproducible way to create and terminate a new Compute Engine instance so that they can automate it as a part of their CI/CD process. What is the best option for accomplishing that?
- A. Recommend that they use the REST API to develop the functionality in the language of their choosing.
- B. Show them how to use the gcloud component of the Cloud SDK.
- C. Show them how to use a Docker container. Then they can get rid of the need for the VM.
- D. Show them how to use the Console to create and terminate instances.
Answer: B
NEW QUESTION 28
An application publishes Amazon SNS messages in response to several events. An AWS Lambda function subscribes to these messages. Occasionally the function will fail while processing a message, so the original event message must be preserved for root cause analysis.
What architecture will meet these requirements without changing the workflow?
- A. Subscribe an Amazon SQS queue to the Amazon SNS topic and trigger the Lambda function from the queue.
- B. Configure Lambda to write failures to an SQS Dead Letter Queue.
- C. Configure a Dead Letter Queue for the Amazon SNS topic.
- D. Configure the Amazon SNS topic to invoke the Lambda function synchronously.
Answer: A
NEW QUESTION 29
......
Valid Associate-Cloud-Engineer Exam Updates - 2021 Study Guide: https://www.testpassking.com/Associate-Cloud-Engineer-exam-testking-pass.html
Associate-Cloud-Engineer Certification - The Ultimate Guide: https://drive.google.com/open?id=1Ml7znbpm_bICbhIP-MT_7fb_rxL1rpb0