Courseiva

Google PCA Practice Question: Managing and Provisioning a Solution Infrastructure

A company wants to deploy a microservice on Cloud Run that requires high throughput and low latency. The service processes requests that can spike unpredictably. The team wants to minimize cold starts and ensure availability during traffic bursts. Which combination of Cloud Run settings should they configure?

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

min-instances = 1, max-instances = 100, concurrency = 80

Setting min instances to 1 ensures at least one instance is always warm, eliminating cold starts. Max instances should be high to handle bursts. Concurrency should be set to the maximum the container can handle to maximize throughput.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • min-instances = 1, max-instances = 1, concurrency = 80

    Why it's wrong here

    max-instances = 1 cannot handle bursts.

  • min-instances = 0, max-instances = 100, concurrency = 1

    Why it's wrong here

    min-instances = 0 allows cold starts; concurrency = 1 limits throughput.

  • min-instances = 0, max-instances = 10, concurrency = 80

    Why it's wrong here

    min-instances = 0 allows cold starts; max-instances = 10 may be too low for bursts.

  • min-instances = 1, max-instances = 100, concurrency = 80

    Why this is correct

    This combination ensures warm instances, allows scaling to handle bursts, and maximizes concurrent requests.

About these practice questions

Courseiva writes every PCA question from scratch — 955 in total, each with an explanation and a wrong-answer breakdown. None are copied from real exams or dumps. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

JA

Written by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

This PCA practice question is part of Courseiva's free Google Cloud certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the PCA exam.