0
0
GCPcloud~20 mins

Operational excellence in GCP - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Operational Excellence Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
Architecture
intermediate
2:00remaining
Identify the best practice for managing GCP resource configurations

You want to ensure that your Google Cloud Platform (GCP) resources are consistently configured and changes are tracked over time. Which approach aligns best with operational excellence principles?

ARely on default settings for all resources and adjust only when errors occur.
BManually configure resources through the GCP Console each time a change is needed.
CUse Infrastructure as Code (IaC) tools like Deployment Manager or Terraform to define and manage resource configurations.
DDocument configurations in a spreadsheet and update it after manual changes.
Attempts:
2 left
💡 Hint

Think about how to automate and track changes to avoid manual errors.

service_behavior
intermediate
2:00remaining
Understanding Cloud Monitoring alert behavior

You set up an alert policy in Google Cloud Monitoring to notify you when CPU usage exceeds 80% for 5 minutes. What will happen if the CPU usage spikes to 85% for 3 minutes and then drops back to 70%?

AMultiple alert notifications will be sent every minute during the spike.
BAn alert notification will be sent immediately when CPU usage hits 85%.
CAn alert notification will be sent after the CPU usage drops below 80%.
DNo alert notification will be sent because the threshold was not exceeded for the full 5 minutes.
Attempts:
2 left
💡 Hint

Consider how alert conditions use duration to avoid false alarms.

security
advanced
2:00remaining
Securing access to GCP resources with least privilege

You want to grant a team member access to only view logs in Cloud Logging but prevent them from modifying or deleting logs. Which IAM role should you assign?

Aroles/logging.viewer
Broles/logging.admin
Croles/editor
Droles/owner
Attempts:
2 left
💡 Hint

Choose the role that provides read-only access to logs.

🧠 Conceptual
advanced
2:00remaining
Understanding the role of SLOs in operational excellence

What is the primary purpose of defining Service Level Objectives (SLOs) in a cloud environment?

ATo set fixed prices for cloud services.
BTo define measurable targets for service reliability and performance.
CTo list all possible errors that can occur in a service.
DTo automate deployment pipelines.
Attempts:
2 left
💡 Hint

Think about how teams measure and improve service quality.

Best Practice
expert
2:00remaining
Designing fault-tolerant GCP infrastructure

You are designing a critical application on GCP that must remain available even if an entire region fails. Which architecture choice best supports this requirement?

AUse multi-region deployment with load balancing and data replication across regions.
BDeploy all resources in a single zone within one region for simplicity.
CDeploy resources in multiple zones within the same region without cross-region replication.
DRely on automatic backups in one region and restore manually if failure occurs.
Attempts:
2 left
💡 Hint

Consider how to handle entire region outages without downtime.