- A
Bigtable for raw data and Cloud Spanner for processed data
Why wrong: Bigtable is a NoSQL database for transactional workloads, not ideal for binary files; Cloud Spanner is for globally distributed transactions, not analytics.
- B
Cloud Storage for both raw and processed data
Why wrong: While Cloud Storage can store processed data, it does not natively support SQL querying; this requires additional tools.
- C
Cloud SQL for raw data and Cloud Dataproc for processing
Why wrong: Cloud SQL has limited storage capacity and is not designed for raw binary data.
- D
Cloud Storage for raw data and BigQuery for processed data
Cloud Storage stores any file type cost-effectively, and BigQuery provides fast SQL queries on structured data.
Designing a Scalable Data Lake Using Cloud Storage and BigQuery
This PDE practice question tests your understanding of pde exam topics. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
A company wants to implement a data lake on Google Cloud to store raw sensor data (unstructured binary files) and allow data scientists to run SQL queries on processed data. They expect to store terabytes of data and have different access patterns. Which combination of GCP services best meets these requirements?
Quick Answer
The correct combination is Cloud Storage for raw data and BigQuery for processed data. This works because Cloud Storage provides cost-effective, durable object storage ideal for unstructured binary sensor data at petabyte scale, with lifecycle management for different access patterns, while BigQuery offers a serverless, columnar SQL engine that automatically optimizes analytical queries on processed, structured data. On the Google Professional Data Engineer exam, this scenario tests your understanding of the separation between raw storage and analytics layers—a common trap is choosing a single service like BigQuery for everything, forgetting it cannot efficiently store raw binary blobs. Remember the memory tip: "Raw in the bucket, clean in the query"—Cloud Storage is the bucket for raw files, BigQuery is the query engine for processed tables.
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
Cloud Storage for raw data and BigQuery for processed data
Cloud Storage is the ideal service for storing raw, unstructured binary sensor data at petabyte scale, offering low-cost, durable object storage with multiple access tiers. BigQuery is a serverless, highly scalable data warehouse that allows data scientists to run SQL queries on processed data, with features like columnar storage and automatic optimization for analytical workloads. This combination directly addresses the need for raw storage and SQL-based analytics on processed data.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Bigtable for raw data and Cloud Spanner for processed data
Why it's wrong here
Bigtable is a NoSQL database for transactional workloads, not ideal for binary files; Cloud Spanner is for globally distributed transactions, not analytics.
- ✗
Cloud Storage for both raw and processed data
Why it's wrong here
While Cloud Storage can store processed data, it does not natively support SQL querying; this requires additional tools.
- ✗
Cloud SQL for raw data and Cloud Dataproc for processing
Why it's wrong here
Cloud SQL has limited storage capacity and is not designed for raw binary data.
- ✓
Cloud Storage for raw data and BigQuery for processed data
Why this is correct
Cloud Storage stores any file type cost-effectively, and BigQuery provides fast SQL queries on structured data.
Related concept
Read the scenario before looking for a memorised answer.
Common exam traps
Common exam trap: answer the scenario, not the keyword
Google Cloud often tests the misconception that Cloud Storage can serve as a queryable database for SQL, when in fact it requires an external query engine like BigQuery or Dataproc for SQL access.
Detailed technical explanation
How to think about this question
Cloud Storage uses a flat namespace with object versioning and lifecycle policies to manage terabytes of sensor data cost-effectively, while BigQuery leverages a distributed, columnar storage format (Capacitor) and a Dremel execution engine to run SQL queries on processed data with sub-second latency on large datasets. A real-world scenario involves ingesting IoT sensor data as binary blobs into Cloud Storage, then using Cloud Dataflow or Dataproc to transform and load it into BigQuery for ad-hoc analysis, avoiding the need for traditional ETL pipelines.
KKey Concepts to Remember
- Read the scenario before looking for a memorised answer.
- Find the constraint that changes the correct option.
- Eliminate answers that are true in general but not in this case.
TExam Day Tips
- Watch for words such as best, first, most likely and least administrative effort.
- Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A startup's cloud architect reviews their monthly bill and notices costs are higher than expected for a long-running batch job. Switching from on-demand instances to Reserved Instances — or using Spot/Preemptible VMs — can reduce compute costs by up to 72 %. Questions like this test whether you understand the tradeoffs between commitment, flexibility, and cost across cloud pricing models.
Quick reference
Cloud Service Model Comparison
| Model | You Manage | Provider Manages | Examples |
|---|---|---|---|
| IaaS | OS, runtime, apps, data | Hardware, hypervisor, networking | EC2, Azure VMs, GCP Compute Engine |
| PaaS | Apps and data | OS, runtime, middleware, hardware | Elastic Beanstalk, Azure App Service |
| SaaS | Data and settings only | Everything else | Microsoft 365, Salesforce, Workday |
| FaaS / Serverless | Function code only | Infra, scaling, runtime | Lambda, Azure Functions, Cloud Run |
| CaaS | Containers and apps | Kubernetes, OS, hardware | EKS, AKS, GKE |
What to study next
Got this wrong? Here's your next step.
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
Related practice questions
Related PDE practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
Designing Data Processing Systems practice questions
Practise PDE questions linked to Designing Data Processing Systems.
Ingesting and Processing the Data practice questions
Practise PDE questions linked to Ingesting and Processing the Data.
Storing the Data practice questions
Practise PDE questions linked to Storing the Data.
Preparing and Using Data for Analysis practice questions
Practise PDE questions linked to Preparing and Using Data for Analysis.
Maintaining and Automating Data Workloads practice questions
Practise PDE questions linked to Maintaining and Automating Data Workloads.
Building and operationalizing data processing systems practice questions
Practise PDE questions linked to Building and operationalizing data processing systems.
Operationalizing machine learning models practice questions
Practise PDE questions linked to Operationalizing machine learning models.
Ensuring solution quality practice questions
Practise PDE questions linked to Ensuring solution quality.
PDE fundamentals practice questions
Practise PDE questions linked to PDE fundamentals.
PDE scenario practice questions
Practise PDE questions linked to PDE scenario.
PDE troubleshooting practice questions
Practise PDE questions linked to PDE troubleshooting.
Practice this exam
Start a free PDE practice session
Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.
FAQ
Questions learners often ask
What does this PDE question test?
Read the scenario before looking for a memorised answer.
What is the correct answer to this question?
The correct answer is: Cloud Storage for raw data and BigQuery for processed data — Cloud Storage is the ideal service for storing raw, unstructured binary sensor data at petabyte scale, offering low-cost, durable object storage with multiple access tiers. BigQuery is a serverless, highly scalable data warehouse that allows data scientists to run SQL queries on processed data, with features like columnar storage and automatic optimization for analytical workloads. This combination directly addresses the need for raw storage and SQL-based analytics on processed data.
What should I do if I get this PDE question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Same concept, more angles
1 more ways this is tested on PDE
These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.
Variation 1. A company is designing a data lake on Google Cloud. They need to store raw data in multiple formats (CSV, Parquet, Avro) and allow various downstream processing frameworks. Which two storage solutions provide flexibility and scalability? (Choose two.)
medium- A.Cloud Filestore
- ✓ B.BigQuery
- ✓ C.Cloud Storage
- D.Cloud Spanner
- E.Cloud Bigtable
Why B: BigQuery is correct because it can directly query raw data stored in Cloud Storage in formats like CSV, Parquet, and Avro using external tables or federated queries, without requiring data loading. This provides a flexible, serverless analytics layer that scales automatically and integrates with downstream processing frameworks like Apache Spark, Dataflow, and Dataproc.
Keep practising
More PDE practice questions
- A company wants to process large CSV files stored in Cloud Storage and load them into BigQuery. The files are generated…
- A company runs a Dataflow streaming pipeline that reads from Cloud Pub/Sub and writes to BigQuery. The pipeline uses a s…
- A company uses Cloud Dataproc for ephemeral clusters to run batch jobs. They want to ensure job reliability and data qua…
- Your company uses Vertex AI Pipelines to automate model retraining. The pipeline has three steps: data extraction from B…
- A company wants to use BigQuery to query data stored in Parquet files in Cloud Storage without loading the data into Big…
- A company has deployed a machine learning model to AI Platform Prediction. The model uses a custom container with a Tens…
Last reviewed: Jun 30, 2026
This PDE practice question is part of Courseiva's free Google Cloud certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the PDE exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.