Exam Details

  • Exam Code
    :ASSOCIATE-CLOUD-ENGINEER
  • Exam Name
    :Associate Cloud Engineer
  • Certification
    :Google Certifications
  • Vendor
    :Google
  • Total Questions
    :363 Q&As
  • Last Updated
    :May 08, 2024

Google Google Certifications ASSOCIATE-CLOUD-ENGINEER Questions & Answers

  • Question 31:

    Your company has a Google Cloud Platform project that uses BigQuery for data warehousing. Your data science team changes frequently and has few members. You need to allow members of this team to perform queries. You want to follow Google-recommended practices. What should you do?

    A. 1. Create an IAM entry for each data scientist's user account.

    2. Assign the BigQuery jobUser role to the group.

    B. 1. Create an IAM entry for each data scientist's user account.

    2. Assign the BigQuery dataViewer user role to the group.

    C. 1. Create a dedicated Google group in Cloud Identity.

    2.

    Add each data scientist's user account to the group.

    3.

    Assign the BigQuery jobUser role to the group.

    D. 1. Create a dedicated Google group in Cloud Identity.

    2.

    Add each data scientist's user account to the group.

    3.

    Assign the BigQuery dataViewer user role to the group.

  • Question 32:

    Your company has a 3-tier solution running on Compute Engine. The configuration of the current infrastructure is shown below.

    Each tier has a service account that is associated with all instances within it. You need to enable communication on TCP port 8080 between tiers as follows:

    1.

    Instances in tier #1 must communicate with tier #2.

    2.

    Instances in tier #2 must communicate with tier #3.

    What should you do?

    A. 1. Create an ingress firewall rule with the following settings: Targets: all instances Source filter: IP ranges (with the range set to 10.0.2.0/24) Protocols: allow all

    2. Create an ingress firewall rule with the following settings:

    Targets: all instances

    Source filter: IP ranges (with the range set to 10.0.1.0/24)

    Protocols: allow all

    B. 1. Create an ingress firewall rule with the following settings: Targets: all instances with tier #2 service account Source filter: all instances with tier #1 service account Protocols: allow TCP:8080

    2. Create an ingress firewall rule with the following settings:

    Targets: all instances with tier #3 service account

    Source filter: all instances with tier #2 service account

    Protocols: allow TCP: 8080

    C. 1. Create an ingress firewall rule with the following settings: Targets: all instances with tier #2 service account Source filter: all instances with tier #1 service account Protocols: allow all

    2. Create an ingress firewall rule with the following settings:

    Targets: all instances with tier #3 service account

    Source filter: all instances with tier #2 service account

    Protocols: allow all

    D. 1. Create an egress firewall rule with the following settings: Targets: all instances Source filter: IP ranges (with the range set to 10.0.2.0/24) Protocols: allow TCP: 8080

    2. Create an egress firewall rule with the following settings:

    Targets: all instances

    Source filter: IP ranges (with the range set to 10.0.1.0/24)

    Protocols: allow TCP: 8080

  • Question 33:

    You have a virtual machine that is currently configured with 2 vCPUs and 4 GB of memory. It is running out of memory. You want to upgrade the virtual machine to have 8 GB of memory. What should you do?

    A. Rely on live migration to move the workload to a machine with more memory.

    B. Use gcloud to add metadata to the VM. Set the key to required-memory-size and the value to 8 GB.

    C. Stop the VM, change the machine type to n1-standard-8, and start the VM.

    D. Stop the VM, increase the memory to 8 GB, and start the VM.

  • Question 34:

    You host a static website on Cloud Storage. Recently, you began to include links to PDF files on this site. Currently, when users click on the links to these PDF files, their browsers prompt them to save the file onto their local system. Instead, you want the clicked PDF files to be displayed within the browser window directly, without prompting the user to save the file locally. What should you do?

    A. Enable Cloud CDN on the website frontend.

    B. Enable `Share publicly' on the PDF file objects.

    C. Set Content-Type metadata to application/pdf on the PDF file objects.

    D. Add a label to the storage bucket with a key of Content-Type and value of application/pdf.

  • Question 35:

    You want to configure 10 Compute Engine instances for availability when maintenance occurs. Your requirements state that these instances should attempt to automatically restart if they crash. Also, the instances should be highly available including during system maintenance. What should you do?

    A. Create an instance template for the instances. Set the `Automatic Restart' to on. Set the `On-host maintenance' to Migrate VM instance. Add the instance template to an instance group.

    B. Create an instance template for the instances. Set `Automatic Restart' to off. Set `On-host maintenance' to Terminate VM instances. Add the instance template to an instance group.

    C. Create an instance group for the instances. Set the `Autohealing' health check to healthy (HTTP).

    D. Create an instance group for the instance. Verify that the `Advanced creation options' setting for `do not retry machine creation' is set to off.

  • Question 36:

    You deployed an App Engine application using gcloud app deploy, but it did not deploy to the intended project. You want to find out why this happened and where the application deployed. What should you do?

    A. Check the app.yaml file for your application and check project settings.

    B. Check the web-application.xml file for your application and check project settings.

    C. Go to Deployment Manager and review settings for deployment of applications.

    D. Go to Cloud Shell and run gcloud config list to review the Google Cloud configuration used for deployment.

  • Question 37:

    You need to select and configure compute resources for a set of batch processing jobs. These jobs take around 2 hours to complete and are run nightly. You want to minimize service costs. What should you do?

    A. Select Google Kubernetes Engine. Use a single-node cluster with a small instance type.

    B. Select Google Kubernetes Engine. Use a three-node cluster with micro instance types.

    C. Select Compute Engine. Use preemptible VM instances of the appropriate standard machine type.

    D. Select Compute Engine. Use VM instance types that support micro bursting.

  • Question 38:

    You recently deployed a new version of an application to App Engine and then discovered a bug in the release. You need to immediately revert to the prior version of the application. What should you do?

    A. Run gcloud app restore.

    B. On the App Engine page of the GCP Console, select the application that needs to be reverted and click Revert.

    C. On the App Engine Versions page of the GCP Console, route 100% of the traffic to the previous version.

    D. Deploy the original version as a separate application. Then go to App Engine settings and split traffic between applications so that the original version serves 100% of the requests.

  • Question 39:

    You've deployed a microservice called myapp1 to a Google Kubernetes Engine cluster using the YAML file specified below:

    You need to refactor this configuration so that the database password is not stored in plain text. You want to follow Google-recommended practices. What should you do?

    A. Store the database password inside the Docker image of the container, not in the YAML file.

    B. Store the database password inside a Secret object. Modify the YAML file to populate the DB_PASSWORD environment variable from the Secret.

    C. Store the database password inside a ConfigMap object. Modify the YAML file to populate the DB_PASSWORD environment variable from the ConfigMap.

    D. Store the database password in a file inside a Kubernetes persistent volume, and use a persistent volume claim to mount the volume to the container.

  • Question 40:

    You are running an application on multiple virtual machines within a managed instance group and have autoscaling enabled. The autoscaling policy is configured so that additional instances are added to the group if the CPU utilization of instances goes above 80%. VMs are added until the instance group reaches its maximum limit of five VMs or until CPU utilization of instances lowers to 80%. The initial delay for HTTP health checks against the instances is set to 30 seconds. The virtual machine instances take around three minutes to become available for users. You observe that when the instance group autoscales, it adds more instances then necessary to support the levels of end-user traffic. You want to properly maintain instance group sizes when autoscaling. What should you do?

    A. Set the maximum number of instances to 1.

    B. Decrease the maximum number of instances to 3.

    C. Use a TCP health check instead of an HTTP health check.

    D. Increase the initial delay of the HTTP health check to 200 seconds.

Tips on How to Prepare for the Exams

Nowadays, the certification exams become more and more important and required by more and more enterprises when applying for a job. But how to prepare for the exam effectively? How to prepare for the exam in a short time with less efforts? How to get a ideal result and how to find the most reliable resources? Here on Vcedump.com, you will find all the answers. Vcedump.com provide not only Google exam questions, answers and explanations but also complete assistance on your exam preparation and certification application. If you are confused on your ASSOCIATE-CLOUD-ENGINEER exam preparations and Google certification application, do not hesitate to visit our Vcedump.com to find your solutions here.