Download Professional Cloud Architect on Google Cloud Platform.Professional-Cloud-Architect.ExamTopics.2025-06-23.200q.vcex

Vendor: Google
Exam Code: Professional-Cloud-Architect
Exam Name: Professional Cloud Architect on Google Cloud Platform
Date: Jun 23, 2025
File Size: 498 KB

How to open VCEX files?

Files with VCEX extension can be opened by ProfExam Simulator.

Demo Questions

Question 1
The JencoMart security team requires that all Google Cloud Platform infrastructure is deployed using a least privilege model with separation of duties for administration between production and development resources.
What Google domain and project structure should you recommend?
  1. Create two G Suite accounts to manage users: one for development/test/staging and one for production. Each account should contain one project for every application
  2. Create two G Suite accounts to manage users: one with a single project for all development applications and one with a single project for all production applications
  3. Create a single G Suite account to manage users with each stage of each application in its own project
  4. Create a single G Suite account to manage users with one project for the development/test/staging environment and one project for the production environment
Correct answer: C
Question 2
Your agricultural division is experimenting with fully autonomous vehicles. You want your architecture to promote strong security during vehicle operation.
Which two architectures should you consider? (Choose two.)
  1. Treat every micro service call between modules on the vehicle as untrusted.
  2. Require IPv6 for connectivity to ensure a secure address space.
  3. Use a trusted platform module (TPM) and verify firmware and binaries on boot.
  4. Use a functional programming language to isolate code execution cycles.
  5. Use multiple connectivity subsystems for redundancy.
  6. Enclose the vehicle's drive electronics in a Faraday cage to isolate chips.
Correct answer: AC
Question 3
You need to ensure reliability for your application and operations by supporting reliable task scheduling for compute on GCP. Leveraging Google best practices, what should you do?
  1. Using the Cron service provided by App Engine, publish messages directly to a message-processing utility service running on Compute Engine instances.
  2. Using the Cron service provided by App Engine, publish messages to a Cloud Pub/Sub topic. Subscribe to that topic using a message-processing utility service running on Compute Engine instances.
  3. Using the Cron service provided by Google Kubernetes Engine (GKE), publish messages directly to a message-processing utility service running on Compute Engine instances.
  4. Using the Cron service provided by GKE, publish messages to a Cloud Pub/Sub topic. Subscribe to that topic using a message-processing utility service running on Compute Engine instances.
Correct answer: B
Question 4
Your company is building a new architecture to support its data-centric business focus. You are responsible for setting up the network. Your company's mobile and web-facing applications will be deployed on-premises, and all data analysis will be conducted in GCP. The plan is to process and load 7 years of archived .csv files totaling 900 TB of data and then continue loading 10 TB of data daily. You currently have an existing 100-MB internet connection.
What actions will meet your company's needs?
  1. Compress and upload both archived files and files uploaded daily using the gsutil ""m option.
  2. Lease a Transfer Appliance, upload archived files to it, and send it to Google to transfer archived data to Cloud Storage. Establish a connection with Google using a Dedicated Interconnect or Direct Peering connection and use it to upload files daily.
  3. Lease a Transfer Appliance, upload archived files to it, and send it to Google to transfer archived data to Cloud Storage. Establish one Cloud VPN Tunnel to VPC networks over the public internet, and compress and upload files daily using the gsutil ""m option.
  4. Lease a Transfer Appliance, upload archived files to it, and send it to Google to transfer archived data to Cloud Storage. Establish a Cloud VPN Tunnel to VPC networks over the public internet, and compress and upload files daily.
Correct answer: B
Question 5
You are developing a globally scaled frontend for a legacy streaming backend data API. This API expects events in strict chronological order with no repeat data for proper processing.
Which products should you deploy to ensure guaranteed-once FIFO (first-in, first-out) delivery of data?
  1. Cloud Pub/Sub alone
  2. Cloud Pub/Sub to Cloud Dataflow
  3. Cloud Pub/Sub to Stackdriver
  4. Cloud Pub/Sub to Cloud SQL
Correct answer: B
Question 6
Your company is planning to perform a lift and shift migration of their Linux RHEL 6.5+ virtual machines. The virtual machines are running in an on-premises
VMware environment. You want to migrate them to Compute Engine following Google-recommended practices. What should you do?
  1. 1. Define a migration plan based on the list of the applications and their dependencies. 2. Migrate all virtual machines into Compute Engine individually with Migrate for Compute Engine.
  2. 1. Perform an assessment of virtual machines running in the current VMware environment. 2. Create images of all disks. Import disks on Compute Engine. 3. Create standard virtual machines where the boot disks are the ones you have imported.
  3. 1. Perform an assessment of virtual machines running in the current VMware environment. 2. Define a migration plan, prepare a Migrate for Compute Engine migration RunBook, and execute the migration.
  4. 1. Perform an assessment of virtual machines running in the current VMware environment. 2. Install a third-party agent on all selected virtual machines. 3. Migrate all virtual machines into Compute Engine.
Correct answer: C
Question 7
You need to deploy an application to Google Cloud. The application receives traffic via TCP and reads and writes data to the filesystem. The application does not support horizontal scaling. The application process requires full control over the data on the file system because concurrent access causes corruption. The business is willing to accept a downtime when an incident occurs, but the application must be available 24/7 to support their business operations. You need to design the architecture of this application on Google Cloud. What should you do?
  1. Use a managed instance group with instances in multiple zones, use Cloud Filestore, and use an HTTP load balancer in front of the instances.
  2. Use a managed instance group with instances in multiple zones, use Cloud Filestore, and use a network load balancer in front of the instances.
  3. Use an unmanaged instance group with an active and standby instance in different zones, use a regional persistent disk, and use an HTTP load balancer in front of the instances.
  4. Use an unmanaged instance group with an active and standby instance in different zones, use a regional persistent disk, and use a network load balancer in front of the instances.
Correct answer: D
Question 8
Your company has an application running on multiple Compute Engine instances. You need to ensure that the application can communicate with an on-premises service that requires high throughput via internal IPs, while minimizing latency. What should you do?
  1. Use OpenVPN to configure a VPN tunnel between the on-premises environment and Google Cloud.
  2. Configure a direct peering connection between the on-premises environment and Google Cloud.
  3. Use Cloud VPN to configure a VPN tunnel between the on-premises environment and Google Cloud.
  4. Configure a Cloud Dedicated Interconnect connection between the on-premises environment and Google Cloud.
Correct answer: D
Question 9
You are managing an application deployed on Cloud Run for Anthos, and you need to define a strategy for deploying new versions of the application. You want to evaluate the new code with a subset of production traffic to decide whether to proceed with the rollout. What should you do?
  1. Deploy a new revision to Cloud Run with the new version. Configure traffic percentage between revisions.
  2. Deploy a new service to Cloud Run with the new version. Add a Cloud Load Balancing instance in front of both services.
  3. In the Google Cloud Console page for Cloud Run, set up continuous deployment using Cloud Build for the development branch. As part of the Cloud Build trigger, configure the substitution variable TRAFFIC_PERCENTAGE with the percentage of traffic you want directed to a new version.
  4. In the Google Cloud Console, configure Traffic Director with a new Service that points to the new version of the application on Cloud Run. Configure Traffic Director to send a small percentage of traffic to the new version of the application.
Correct answer: A
Question 10
You are monitoring Google Kubernetes Engine (GKE) clusters in a Cloud Monitoring workspace. As a Site Reliability Engineer (SRE), you need to triage incidents quickly. What should you do?
  1. Navigate the predefined dashboards in the Cloud Monitoring workspace, and then add metrics and create alert policies.
  2. Navigate the predefined dashboards in the Cloud Monitoring workspace, create custom metrics, and install alerting software on a Compute Engine instance.
  3. Write a shell script that gathers metrics from GKE nodes, publish these metrics to a Pub/Sub topic, export the data to BigQuery, and make a Data Studio dashboard.
  4. Create a custom dashboard in the Cloud Monitoring workspace for each incident, and then add metrics and create alert policies.
Correct answer: A
Question 11
You are implementing a single Cloud SQL MySQL second-generation database that contains business-critical transaction data. You want to ensure that the minimum amount of data is lost in case of catastrophic failure. Which two features should you implement? (Choose two.)
  1. Sharding
  2. Read replicas
  3. Binary logging
  4. Automated backups
  5. Semisynchronous replication
Correct answer: CD
HOW TO OPEN VCE FILES

Use VCE Exam Simulator to open VCE files
Avanaset

HOW TO OPEN VCEX FILES

Use ProfExam Simulator to open VCEX files
ProfExam Screen

ProfExam
ProfExam at a 20% markdown

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

Get Now!