0
0
GCPcloud~20 mins

Why data services matter in GCP - Challenge Your Understanding

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Data Services Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Why use managed data services in the cloud?

Imagine you have a small bakery and you want to keep track of your sales and inventory. You can either keep a notebook yourself or use a specialized app that automatically updates and backs up your data. In cloud computing, why is it better to use managed data services like BigQuery or Cloud SQL instead of managing your own database servers?

AUsing managed data services means you lose control over your data and cannot access it directly.
BManaged data services do not support automatic scaling, so you must manually adjust resources.
CManaged data services handle backups, scaling, and maintenance automatically, reducing manual work and errors.
DManaging your own database servers is always cheaper and requires less technical knowledge.
Attempts:
2 left
💡 Hint

Think about what tasks a bakery owner would prefer to automate to save time and avoid mistakes.

Architecture
intermediate
2:00remaining
Choosing the right data service for analytics

Your company collects large amounts of customer data daily. You want to run fast, complex queries to find trends and generate reports. Which Google Cloud data service is best suited for this task?

ACloud Bigtable, because it is optimized for large-scale transactional workloads.
BCloud BigQuery, because it is designed for fast, large-scale data analytics and SQL queries.
CCloud SQL, because it supports relational databases and is best for small datasets.
DCloud Storage, because it stores files and is optimized for unstructured data.
Attempts:
2 left
💡 Hint

Think about which service is built for running fast queries on big data.

security
advanced
2:00remaining
Securing data in cloud data services

You want to ensure that only authorized users can access sensitive data stored in Cloud SQL. Which approach best improves security?

AUse Cloud IAM roles to grant least privilege access and enable data encryption at rest and in transit.
BShare the database credentials with all team members to avoid access delays.
CStore database credentials in plain text files on user machines for easy access.
DDisable encryption to improve performance and rely on network firewalls only.
Attempts:
2 left
💡 Hint

Think about how to limit access and protect data both when stored and moving over the network.

service_behavior
advanced
2:00remaining
Behavior of Cloud Storage with versioning enabled

You enable versioning on a Cloud Storage bucket. What happens when you upload a new file with the same name as an existing file?

AThe new file is saved as a new version, and the old version is retained and accessible.
BThe new file is rejected because a file with the same name already exists.
CThe new file overwrites the old file and the old version is lost permanently.
DThe bucket automatically deletes the old file before saving the new one.
Attempts:
2 left
💡 Hint

Think about what versioning means for file storage.

Best Practice
expert
2:00remaining
Optimizing cost and performance for data pipelines

You design a data pipeline that processes streaming data and stores results in BigQuery. To optimize cost and performance, which practice should you follow?

AStore all raw data only in Cloud Storage and never load it into BigQuery to avoid costs.
BStream every single event immediately into BigQuery without batching to minimize latency at all costs.
CUse multiple small BigQuery tables instead of partitioned tables to organize data better.
DBatch data into larger chunks before loading into BigQuery to reduce streaming insert costs and improve query performance.
Attempts:
2 left
💡 Hint

Consider how batching affects cost and query speed in BigQuery.