0
0
GCPcloud~10 mins

Well-Architected Framework review in GCP - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to identify the pillar that focuses on system uptime and availability.

GCP
pillar = "[1]"  # This pillar ensures your system stays up and running
Drag options to blanks, or click blank then click option'
AReliability
BPerformance Efficiency
CSecurity
DCost Optimization
Attempts:
3 left
πŸ’‘ Hint
Common Mistakes
Confusing Reliability with Security or Cost Optimization.
2fill in blank
medium

Complete the code to select the pillar that helps protect data and systems.

GCP
pillar = "[1]"  # This pillar focuses on protecting your cloud resources
Drag options to blanks, or click blank then click option'
AOperational Excellence
BSecurity
CCost Optimization
DPerformance Efficiency
Attempts:
3 left
πŸ’‘ Hint
Common Mistakes
Choosing Cost Optimization or Operational Excellence instead of Security.
3fill in blank
hard

Fix the error in the code to correctly assign the pillar that optimizes cloud spending.

GCP
pillar = "[1]"  # This pillar helps manage and reduce costs
Drag options to blanks, or click blank then click option'
APerformance Efficiency
BSecurity
CReliability
DCost Optimization
Attempts:
3 left
πŸ’‘ Hint
Common Mistakes
Mixing Cost Optimization with Performance Efficiency or Security.
4fill in blank
hard

Fill both blanks to complete the code that defines the two pillars related to system operation and speed.

GCP
pillars = ["[1]", "[2]"]  # These pillars focus on running and speeding up your system
Drag options to blanks, or click blank then click option'
AOperational Excellence
BSecurity
CPerformance Efficiency
DCost Optimization
Attempts:
3 left
πŸ’‘ Hint
Common Mistakes
Choosing Security or Cost Optimization instead of Operational Excellence or Performance Efficiency.
5fill in blank
hard

Fill all three blanks to create a dictionary mapping pillars to their focus areas.

GCP
pillar_focus = {
  "[1]": "Protect data and systems",
  "[2]": "Keep systems running",
  "[3]": "Manage cloud costs"
}
Drag options to blanks, or click blank then click option'
ASecurity
BReliability
CCost Optimization
DPerformance Efficiency
Attempts:
3 left
πŸ’‘ Hint
Common Mistakes
Mixing up pillars and their focus areas.