What is Cloud Build?
Answer: Cloud Build is GCP's serverless CI/CD execution service. A build is a sequence of steps, each running a container image with your source mounted, defined in a cloudbuild.yaml or a Dockerfile. It triggers on repository events, has no build servers to maintain, and integrates with IAM, Secret Manager, Artifact Registry and Cloud Deploy.
Why interviewers ask this: The "every step is a container" model is the point to draw out: it means any tool can be a build step without installing anything on a shared agent, and steps are reproducible. That is a meaningful difference from a traditional agent-based CI system with drifting tool versions.
