Google Cloud Database Engineer Professional
Tests ability to deploy, monitor, maintain, and optimize cloud database solutions on Google Cloud
Time limit
2h
Questions
65
Passing score
75%
Difficulty
Advanced
Category
Google Cloud Database Engineer Professional
Sample questions
A few questions from this practice exam, with the correct answer and why it is correct.
1.An application needs a relational database with strong consistency, horizontal write scaling across continents, and a 99.999% availability SLA. Which Google Cloud service fits?
- ASpannerCorrect answer
- BCloud SQL for PostgreSQL
- CAlloyDB for PostgreSQL
- DBigtable
Why
Spanner provides externally consistent transactions with horizontal scaling across regions and offers a 99.999% availability SLA in multi-region configurations. Cloud SQL scales writes vertically on a single primary, AlloyDB scales reads horizontally but writes on one primary, and Bigtable is a NoSQL wide-column store without relational transactions across arbitrary rows.
2.A time-series workload ingests millions of sensor readings per second and queries them by device and time range with single-digit millisecond latency. Which database fits?
- ABigtableCorrect answer
- BCloud SQL for MySQL
- CSpanner
- DBigQuery
Why
Bigtable is designed for very high write throughput and low-latency lookups on a row key, which suits a device identifier combined with a timestamp. Cloud SQL cannot sustain that ingest rate, Spanner is far more expensive for this pattern and is optimized for transactional relational access, and BigQuery is an analytical warehouse rather than a low-latency key lookup store.
3.A team runs a PostgreSQL application that needs much better performance on both transactional and analytical queries, while remaining PostgreSQL compatible. Which service should they evaluate?
- AAlloyDB for PostgreSQLCorrect answer
- BCloud SQL for PostgreSQL
- CSpanner with the PostgreSQL interface
- DBigtable
Why
AlloyDB for PostgreSQL is PostgreSQL compatible and adds a columnar engine and an optimized storage layer that accelerate analytical queries alongside transactional work. Cloud SQL for PostgreSQL offers compatibility without the columnar acceleration, Spanner requires schema and application changes, and Bigtable is not PostgreSQL compatible at all.
4.An application must store semi-structured documents, sync them to mobile clients offline, and scale automatically without capacity planning. Which service fits?
- AFirestoreCorrect answer
- BCloud SQL for MySQL
- CBigtable
- DMemorystore for Redis
Why
Firestore stores documents, provides offline synchronization for mobile and web SDKs, and scales automatically without provisioning. Cloud SQL is relational and has no offline sync, Bigtable is a wide-column store without document sync, and Memorystore is an in-memory cache rather than a durable document store.
5.A read-heavy application repeatedly issues the same expensive query against Cloud SQL, and the team wants sub-millisecond responses for repeat reads. Which service should be added?
- AMemorystore for Redis as a cache layerCorrect answer
- BAdditional Cloud SQL read replicas
- CA larger Cloud SQL machine type
- DMigrating the workload to Bigtable
Why
Memorystore provides a managed in-memory cache that serves repeated reads in sub-millisecond time, relieving the database. Adding read replicas reduces primary load but does not reach sub-millisecond latency, increasing the instance size does not cache anything, and moving to Bigtable changes the data model entirely.
Practice all 65 questions
Frequently asked questions
Is the Google Cloud Database Engineer Professional practice exam free?
You can take it with the free attempts included in your account. After those run out, this exam requires a premium plan, while foundational-level exams stay free and unlimited.
How many questions does it have and how long does it take?
65 questions with a 120-minute time limit, so you practise under the same time pressure as the real exam.
What score do I need to pass?
You need 75% to pass this practice exam. Your score and a per-question review are shown as soon as you finish.
Do I need an account?
Yes, a free account. It is what lets us save your attempt, score it and keep your history.
Can I retake it?
Yes. Each attempt uses one of your free attempts, and a premium plan makes them unlimited.
Are these the real questions from the official exam?
No. NaHero does not reproduce questions from the official exam. These are practice questions written to match its format, topics and difficulty.