Cloud Digital Leader Google Cloud Products and Services Practice Question
A developer wants to deploy a containerized web application that can scale to zero when not in use, and only pay for actual request processing time. Which Google Cloud compute service should the developer use?
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
✓
Cloud Run
Cloud Run is a serverless container runtime that scales to zero and charges per request, ideal for containerized apps with variable traffic. Cloud Functions is for smaller code snippets, not containers. Compute Engine runs VMs continuously, and GKE requires at least one node.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Cloud Functions
Why it's wrong here
Cloud Functions is a serverless function-as-a-service platform that executes discrete code events in fixed runtimes such as Node.js, Python, Go, and Java. It does not accept arbitrary container images, and its execution model is event-driven and short-lived, with timeouts measured in minutes, which makes it fundamentally unsuitable for hosting a persistent, request-driven containerized web application. Even if you were to translate your app into functions, you would lose control over the HTTP server lifecycle and accumulate behavior penalties for long-running processes.
- ✓
Cloud Run
Why this is correct
Cloud Run is the correct service because it directly executes any OCI-compliant container image on a fully managed, serverless infrastructure, eliminating the need to manage servers or clusters. It scales from zero to thousands of active instances in response to inbound HTTP requests, and charges only for the compute resources used while each request is being processed, plus a brief instance-startup window. This makes it ideal for a containerized web application: you retain portability and control over the runtime environment while benefiting from automatic TLS termination, revision traffic splitting, and the ability to scale down to literally zero when idle.
- ✗
Compute Engine
Why it's wrong here
Compute Engine is a traditional infrastructure-as-a-service offering where you provision and maintain virtual machines with fixed vCPU, memory, and disk allocations that run continuously until you explicitly stop or delete them. You are billed by the second (or month for predefined VM types) for the entire lifetime of the VM, regardless of whether it is actively serving traffic or sitting completely idle, so it cannot scale to zero and offers no request-based cost model. Although you could theoretically install Docker and run your container on a Compute Engine VM, you would inherit the full burden of operating system patching, container runtime maintenance, and manual or custom autoscaling, making it operationally heavier and much less cost-efficient than Cloud Run for a simple web workload.
- ✗
Google Kubernetes Engine (GKE)
Why it's wrong here
Google Kubernetes Engine runs containerized applications on top of a managed Kubernetes cluster, but that cluster is composed of a control plane and node pools that are essentially virtual machines you must pay for even when no workload is running. While Kubernetes can automatically scale the number of pods, the underlying nodes remain provisioned, so you cannot achieve a true zero-cost idle state; even in Autopilot mode, a flat per-cluster infrastructure fee is charged independently of pod usage, meaning it never scales to zero. For a single containerized web app that does not require advanced Kubernetes abstractions like custom deployments, service meshes, or targeted autoscaling policies, GKE introduces unnecessary architectural complexity and fixed overhead that Cloud Run simply eliminates.
Quick reference
Cloud Service Model Comparison
| Model | You Manage | Provider Manages | Examples |
|---|---|---|---|
| IaaS | OS, runtime, apps, data | Hardware, hypervisor, networking | EC2, Azure VMs, GCP Compute Engine |
| PaaS | Apps and data | OS, runtime, middleware, hardware | Elastic Beanstalk, Azure App Service |
| SaaS | Data and settings only | Everything else | Microsoft 365, Salesforce, Workday |
| FaaS / Serverless | Function code only | Infra, scaling, runtime | Lambda, Azure Functions, Cloud Run |
| CaaS | Containers and apps | Kubernetes, OS, hardware | EKS, AKS, GKE |
Go deeper
Related to this question
Learn chapter
Cloud Digital Transformation
Key term
Cloud Run
Cloud Run is a fully managed compute platform from Google Cloud that lets you run containerized applications in a serverless environment, automatically scaling from zero to thousands of requests.
Key term
Compute Engine
Compute Engine is Google Cloud's Infrastructure-as-a-Service (IaaS) offering that lets you create and run virtual machines on Google's infrastructure.
About these practice questions
One of 829 original GCDL practice questions on Courseiva, each with a full explanation and wrong-answer analysis — not exam dumps or protected exam content. Learn why practice questions differ from exam dumps →
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
This GCDL 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 GCDL exam.