Objective 1.3
PCDStoring and accessing data
Objective 1.3 sits in Designing highly scalable, secure, and reliable cloud-native applications, which carries 32% of the Cloud Developer exam. The questions below are original, written from the official objective title above, and each explanation cites the Google Cloud page it rests on.
Objective title verbatim from the official objectives. Google Cloud exam page ↗
A worked example
Shown solved, with the whole explanation open: this is what every question here carries.
A team queries a collection and one stored document never comes back, though it plainly exists. What accounts for that on a query using an index?
Correct.
Concept
Membership of an index is decided per document, so absence from the index is silent: the query returns a smaller answer rather than an error.
Why B
A document appears in an index only when it has an indexed value set for every field the index names. Missing one of them keeps it out, and no query on that index will ever return it.
Source
Firestore Standard edition index overview, checked August 2026A document is included in the index only if it has an indexed value set for every field used in the index. If the index definition refers to a field for which the document has no value set, that document won't appear in the index. In this case, the document will never be returned as a result for any query based on the index.
Now you: objective 1.3 questions
No account needed. The explanation opens when you answer.
Sample question 1 of 3
A team expects its queries to slow as a collection grows past several million documents. What actually governs how long a query takes?
Sample question 2 of 3
An engineer runs a query filtering on two fields at once and it fails outright. Why was no index already waiting for it?
Sample question 3 of 3
A team sets an index exemption on a map field, then deletes an exemption it had placed on one of that map's subfields. What governs that subfield now?
Full Cloud Developer question bank coming
We’re writing the complete bank from the official objectives right now. Leave your email and we’ll tell you when it ships, nothing else, ever.
Read the sources
These are the official pages the questions above cite. Reading them is studying the objective from the primary source, which is what the explanations point you toward anyway.