Skip to content

DevOps Automation :Reliable Google Cloud Infrastructure: Design and Process (Preparing for Google Cloud Certification: Cloud Architect Professional Certificate) Answers 2025

Question 1

What Google Cloud feature would be easiest to automate a build when code is checked into your source repository?

โŒ Cloud Scheduler
โŒ Cloud Run functions
๐ŸŸฉ Build triggers
โŒ App Engine

Explanation:

Build Triggers (Cloud Build) automatically start builds when code is pushed to Cloud Source Repositories, GitHub, or Bitbucket.
It is the correct and simplest CI automation tool.


Question 2

Which Google Cloud tools can be used to build a CI pipeline?

๐ŸŸฉ All of these
โŒ Artifact Registry
โŒ Cloud Build
โŒ Cloud Source Repositories

Explanation:

A full CI pipeline typically uses:

  • Cloud Build โ†’ executes builds

  • Artifact Registry โ†’ stores images/artifacts

  • Cloud Source Repositories (or GitHub) โ†’ stores code

Since all listed tools participate in CI pipelines, “All of these” is correct.


๐Ÿงพ Summary Table

Q# Correct Answer Key Concept
1 Build triggers Automate builds on code push
2 All of these All listed services support CI pipelines