Question 331 of 503
Monitor and optimize database performancemediumMultiple SelectObjective-mapped

Quick Answer

The answer is Rows scanned and CPU time. Rows scanned directly reveals whether a secondary index is selective enough; if the query still scans a large number of rows despite using an index, the index is poorly chosen or the query retrieves too much data, causing excessive I/O and latency. CPU time indicates expensive operations like sorting, joining, or complex filtering that slow performance even when an index is used. On the Google Professional Cloud Database Engineer exam, this tests your ability to distinguish between index-related inefficiency and computational overhead—a common trap is focusing only on latency or execution count, which are less direct. Remember the mnemonic “Scan and Spin”: Rows scanned tells you how much data is touched, CPU time tells you how hard the engine works to process it. Together, they pinpoint whether the bottleneck is data volume or processing cost.

PCDE Monitor and optimize database performance Practice Question

This PCDE practice question tests your understanding of monitor and optimize database performance. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. 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.

You are troubleshooting a slow-performing query on Cloud Spanner. The query scans a large table with a secondary index. Which TWO metrics from the Query Insights dashboard would most directly indicate the source of the performance issue?

Question 1mediummulti select
Full question →

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

CPU time

CPU time (A) is correct because high CPU usage indicates that the query is performing expensive operations like sorting, joining, or complex filtering, which can slow performance even if the index is used. Rows scanned (B) is correct because scanning a large number of rows, even with a secondary index, suggests the index is not selective enough or the query is retrieving many rows, leading to excessive I/O and latency. Both metrics directly point to query execution inefficiency.

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.

  • CPU time

    Why this is correct

    High CPU time indicates the query is computationally expensive.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Rows scanned

    Why this is correct

    High rows scanned suggests the query is reading too many rows, possibly due to missing filters.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Storage utilization

    Why it's wrong here

    Storage utilization is a capacity metric.

  • Commit latency

    Why it's wrong here

    Commit latency applies to write transactions, not read queries.

  • Lock wait time

    Why it's wrong here

    Lock wait time is for write contention, not read queries.

Common exam traps

Common exam trap: answer the scenario, not the keyword

Google Cloud often tests the distinction between metrics that indicate query execution inefficiency (CPU time, rows scanned) versus metrics related to storage or write contention, leading candidates to mistakenly select storage utilization or lock wait time for a read-only query performance issue.

Detailed technical explanation

How to think about this question

Under the hood, Cloud Spanner's Query Insights tracks CPU time as the sum of CPU seconds consumed across all nodes for query execution, which correlates directly with computational cost. Rows scanned reflects the number of rows read from storage before filtering; a high value often indicates a full index scan or a non-selective index, which can be mitigated by using a covering index or rewriting the query to push filters. In real-world scenarios, a query scanning millions of rows but returning only a few rows is a classic sign of poor index design or missing filters.

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 media company stores terabytes of video archives that are accessed once a year for audit purposes. Moving these objects to a cold storage tier (Azure Archive, S3 Glacier, or Google Nearline) costs a fraction of hot storage. Questions like this test whether you understand storage tiers, access frequency tradeoffs, and retrieval latency requirements.

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 PCDE practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free PCDE 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 PCDE question test?

Monitor and optimize database performance — This question tests Monitor and optimize database performance — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: CPU time — CPU time (A) is correct because high CPU usage indicates that the query is performing expensive operations like sorting, joining, or complex filtering, which can slow performance even if the index is used. Rows scanned (B) is correct because scanning a large number of rows, even with a secondary index, suggests the index is not selective enough or the query is retrieving many rows, leading to excessive I/O and latency. Both metrics directly point to query execution inefficiency.

What should I do if I get this PCDE 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 →

How Courseiva writes practice questions · Editorial policy

Last reviewed: Jun 30, 2026

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.

Loading comments…

Sign in to join the discussion.

This PCDE 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 PCDE exam.