ASSOCIATE-CLOUD-ENGINEER Exam Details

  • Exam Code
    :ASSOCIATE-CLOUD-ENGINEER
  • Exam Name
    :Associate Cloud Engineer
  • Certification
    :Google Certifications
  • Vendor
    :Google
  • Total Questions
    :427 Q&As
  • Last Updated
    :Jul 14, 2026

Google ASSOCIATE-CLOUD-ENGINEER Online Questions & Answers

  • Question 11:

    You are the team lead of a group of 10 developers. You provided each developer with an individual Google Cloud Project that they can use as their personal sandbox to experiment with different Google Cloud solutions. You want to be notified if any of the developers are spending above $500 per month on their sandbox environment. What should you do?

    A. Create a single budget for all projects and configure budget alerts on this budget.
    B. Create a separate billing account per sandbox project and enable BigQuery billing exports. Create a Data Studio dashboard to plot the spending per billing account.
    C. Create a budget per project and configure budget alerts on all of these budgets.
    D. Create a single billing account for all sandbox projects and enable BigQuery billing exports. Create a Data Studio dashboard to plot the spending per project.

  • Question 12:

    You need to verify that a Google Cloud Platform service account was created at a particular time. What should you do?

    A. Filter the Activity log to view the Configuration category. Filter the Resource type to Service Account.
    B. Filter the Activity log to view the Configuration category. Filter the Resource type to Google Project.
    C. Filter the Activity log to view the Data Access category. Filter the Resource type to Service Account.
    D. Filter the Activity log to view the Data Access category. Filter the Resource type to Google Project.

  • Question 13:

    You want to verify the IAM users and roles assigned within a GCP project named my-project. What should you do?

    A. Run gcloud iam roles list. Review the output section.
    B. Run gcloud iam service-accounts list. Review the output section.
    C. Navigate to the project and then to the IAM section in the GCP Console. Review the members and roles.
    D. Navigate to the project and then to the Roles section in the GCP Console. Review the roles and status.

  • Question 14:

    Your company stores data from multiple sources that have different data storage requirements. These data include:

    1.Customer data that is structured and read with complex queries

    2.Historical log data that is large in volume and accessed infrequently

    3.Real-time sensor data with high-velocity writes, which needs to be available for analysis but can tolerate some data loss.

    You need to design the most cost-effective storage solution that fulfills all data storage requirements. What should you do?

    A. Use Firestore for customer data, Cloud Storage (Nearline) for historical logs, and Bigtable for sensor data.
    B. Use Cloud SQL for customer data. Cloud Storage (Coldline) for historical logs, and BigQuery for sensor data.
    C. Use Cloud SQL for customer data. Cloud Storage (Archive) for historical logs, and Bigtable for sensor data.
    D. Use Spanner for all data.

  • Question 15:

    Your company set up a complex organizational structure on Google Could Platform. The structure includes hundreds of folders and projects. Only a few team members should be able to view the hierarchical structure. You need to assign minimum permissions to these team members and you want to follow Google-recommended practices. What should you do?

    A. Add the users to roles/browser role.
    B. Add the users to roles/iam.roleViewer role.
    C. Add the users to a group, and add this group to roles/browser role.
    D. Add the users to a group, and add this group to roles/iam.roleViewer role.

  • Question 16:

    You are a Google Cloud organization administrator. You need to configure organization policies and log sinks on Google Cloud projects that cannot be removed by project users to comply with your company's security policies. The security policies are different for each company department. Each company department has a user with the Project Owner role assigned to their projects. What should you do?

    A. Organize projects under folders for each department. Configure both organization policies and log sinks on the folders.
    B. Organize projects under folders for each department. Configure organization policies on the organization and log sinks on the folders.
    C. Use a standard naming convention for projects that includes the department name. Configure organization policies on the organization and log sinks on the projects.
    D. Use a standard naming convention for projects that includes the department name. Configure both organization policies and log sinks on the projects.

  • Question 17:

    You created a cluster.YAML file containing

    resources: name: cluster type: container.v1.cluster properties: zone: europe-west1-b cluster: description: My GCP ACE cluster initialNodeCount: 2

    You want to use Cloud Deployment Manager to create this cluster in GKE. What should you do?

    A. gcloud deployment-manager deployments create my-gcp-ace-cluster --config cluster.yaml
    B. gcloud deployment-manager deployments create my-gcp-ace-cluster --type container.v1.cluster -- config cluster.yaml
    C. gcloud deployment-manager deployments apply my-gcp-ace-cluster --type container.v1.cluster --config cluster.yaml
    D. gcloud deployment-manager deployments apply my-gcp-ace-cluster --config cluster.yaml

  • Question 18:

    You have an application running in Google Kubernetes Engine (GKE) with cluster autoscaling enabled. The application exposes a TCP endpoint. There are several replicas of this application. You have a Compute Engine instance in the same region, but in another Virtual Private Cloud (VPC), called gce-network, that has no overlapping IP ranges with the first VPC. This instance needs to connect to the application on GKE. You want to minimize effort. What should you do?

    A. 1. In GKE, create a Service of type LoadBalancer that uses the application's Pods as backend. 2.Set the service's externalTrafficPolicy to Cluster. 3.Configure the Compute Engine instance to use the address of the load balancer that has been created.
    B. 1. In GKE, create a Service of type NodePort that uses the application's Pods as backend. 2.Create a Compute Engine instance called proxy with 2 network interfaces, one in each VPC. 3.Use iptables on this instance to forward traffic from gce-network to the GKE nodes. 4.Configure the Compute Engine instance to use the address of proxy in gce-network as endpoint.
    C. 1. In GKE, create a Service of type LoadBalancer that uses the application's Pods as backend. 2.Add an annotation to this service: cloud.google.com/load-balancer-type: Internal 3.Peer the two VPCs together. 4.Configure the Compute Engine instance to use the address of the load balancer that has been created.
    D. 1. In GKE, create a Service of type LoadBalancer that uses the application's Pods as backend. 2.Add a Cloud Armor Security Policy to the load balancer that whitelists the internal IPs of the MIG's instances. 3.Configure the Compute Engine instance to use the address of the load balancer that has been created.

  • Question 19:

    Your developers have some application metrics that they're tracking. They'd like to be able to create alerts based on these metrics. What steps need to happen in order to alert based on these metrics?

    A. In the UI create a new logging metric with the required filters, edit the application code to set the metric value when needed, and create an alert in Stackdriver based on the new metric.
    B. Create a custom monitoring metric in code, edit the application code to set the metric value when needed, create an alert in Stackdriver based on the new metric.
    C. Add the Stackdriver monitoring and logging agent to the instances running the code.
    D. Create a custom monitoring metric in code, in the UI create a matching logging metric, and create an alert in Stackdriver based on the new metric.

  • Question 20:

    You will have several applications running on different Compute Engine instances in the same project. You want to specify at a more granular level the service account each instance uses when calling Google Cloud APIs. What should you do?

    A. When creating the instances, specify a Service Account for each instance.
    B. When creating the instances, assign the name of each Service Account as instance metadata.
    C. After starting the instances, use gcloud compute instances update to specify a Service Account for each instance.
    D. After starting the instances, use gcloud compute instances update to assign the name of the relevant Service Account as instance metadata.

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.