- A
Eventual consistency is sufficient; the game can show slightly stale state to some players without impact on gameplay
Why wrong: In a real-time multiplayer game, showing different states to different players simultaneously creates game-breaking inconsistencies: players acting on different views of game state leads to conflicting outcomes. Strong consistency is required.
- B
Strong consistency is required so all players simultaneously read the same current game state; eventual consistency would create conflicting game states visible to different players
This is correct. Strong consistency guarantees that after a write (player moves), all subsequent reads from any client see that write. This ensures all players operate on the same view of game state. Cloud Spanner's external consistency or Firestore's strongly consistent reads serve this requirement.
- C
Consistency doesn't matter for gaming databases because games update state so frequently that any inconsistency resolves within milliseconds
Why wrong: Milliseconds of inconsistency in a real-time game means players are seeing and acting on different realities simultaneously. At game speeds, even sub-second inconsistency creates serious problems.
- D
The game should avoid databases entirely and use local storage on each player's device to ensure fast, consistent state access
Why wrong: Local storage per device creates the worst consistency problem — each device maintains its own state with no coordination. Real-time multiplayer requires a shared authoritative source of truth.
Cloud Digital Leader Practice Question: A startup is building a gaming application where…
This GCDL practice question tests your understanding of gcdl 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 startup is building a gaming application where players must see each other's moves in real time. The database storing game state must guarantee that all players see the same state simultaneously. Which consistency requirement does this impose and why does it matter for database selection?
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
Strong consistency is required so all players simultaneously read the same current game state; eventual consistency would create conflicting game states visible to different players
B is correct because real-time multiplayer gaming requires strong consistency to ensure all players see the identical game state simultaneously. In a GCDL context, this means the database must support ACID transactions or linearizable reads (e.g., using Google Cloud Spanner or a strongly consistent NoSQL system like Cloud Firestore in strong consistency mode). Eventual consistency would allow different players to observe different board positions, breaking the game's core requirement of a shared, current state.
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.
- ✗
Eventual consistency is sufficient; the game can show slightly stale state to some players without impact on gameplay
Why it's wrong here
In a real-time multiplayer game, showing different states to different players simultaneously creates game-breaking inconsistencies: players acting on different views of game state leads to conflicting outcomes. Strong consistency is required.
- ✓
Strong consistency is required so all players simultaneously read the same current game state; eventual consistency would create conflicting game states visible to different players
Why this is correct
This is correct. Strong consistency guarantees that after a write (player moves), all subsequent reads from any client see that write. This ensures all players operate on the same view of game state. Cloud Spanner's external consistency or Firestore's strongly consistent reads serve this requirement.
Related concept
Read the scenario before looking for a memorised answer.
- ✗
Consistency doesn't matter for gaming databases because games update state so frequently that any inconsistency resolves within milliseconds
Why it's wrong here
Milliseconds of inconsistency in a real-time game means players are seeing and acting on different realities simultaneously. At game speeds, even sub-second inconsistency creates serious problems.
- ✗
The game should avoid databases entirely and use local storage on each player's device to ensure fast, consistent state access
Why it's wrong here
Local storage per device creates the worst consistency problem — each device maintains its own state with no coordination. Real-time multiplayer requires a shared authoritative source of truth.
Common exam traps
Common exam trap: answer the scenario, not the keyword
The GCDL exam often tests the misconception that eventual consistency is 'good enough' for real-time applications, but the trap is that gaming state requires a single, globally agreed view—eventual consistency introduces windows of divergence that break the core gameplay contract.
Trap categories for this question
Command / output trap
In a real-time multiplayer game, showing different states to different players simultaneously creates game-breaking inconsistencies: players acting on different views of game state leads to conflicting outcomes. Strong consistency is required.
Detailed technical explanation
How to think about this question
Strong consistency in distributed databases is typically achieved via consensus protocols like Paxos or Raft (used in Google Cloud Spanner) or through single-leader replication with synchronous commits. Under the hood, this means every read returns the most recent write acknowledged by a quorum, ensuring linearizability. In a real-world scenario, if a player captures a piece in a chess game, strong consistency guarantees that all other players immediately see the board with that piece removed, preventing disputes or rollbacks.
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.
Quick reference
OSI Model Reference
| Layer | Name | PDU | Key Protocols / Devices |
|---|---|---|---|
| 7 | Application | Data | HTTP, HTTPS, DNS, SMTP, FTP, SSH |
| 6 | Presentation | Data | TLS / SSL, JPEG, ASCII encoding |
| 5 | Session | Data | NetBIOS, RPC, SIP |
| 4 | Transport | Segment / Datagram | TCP, UDP |
| 3 | Network | Packet | IP, ICMP, OSPF — Routers |
| 2 | Data Link | Frame | Ethernet, Wi-Fi, PPP — Switches, Bridges |
| 1 | Physical | Bits | Cables, NICs, Hubs, Repeaters |
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 GCDL practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
Why Cloud Technology Can Transform Business practice questions
Practise GCDL questions linked to Why Cloud Technology Can Transform Business.
Fundamental Cloud Concepts practice questions
Practise GCDL questions linked to Fundamental Cloud Concepts.
Google Cloud Security practice questions
Practise GCDL questions linked to Google Cloud Security.
How Google Cloud Resources Are Managed practice questions
Practise GCDL questions linked to How Google Cloud Resources Are Managed.
Google Cloud Products and Services practice questions
Practise GCDL questions linked to Google Cloud Products and Services.
Why cloud technology is transforming business practice questions
Practise GCDL questions linked to Why cloud technology is transforming business.
Google Cloud products, services, and solutions practice questions
Practise GCDL questions linked to Google Cloud products, services, and solutions.
Scaling with Google Cloud operations practice questions
Practise GCDL questions linked to Scaling with Google Cloud operations.
Trust and security with Google Cloud practice questions
Practise GCDL questions linked to Trust and security with Google Cloud.
GCDL fundamentals practice questions
Practise GCDL questions linked to GCDL fundamentals.
GCDL scenario practice questions
Practise GCDL questions linked to GCDL scenario.
GCDL troubleshooting practice questions
Practise GCDL questions linked to GCDL troubleshooting.
Practice this exam
Start a free GCDL 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 GCDL question test?
Read the scenario before looking for a memorised answer.
What is the correct answer to this question?
The correct answer is: Strong consistency is required so all players simultaneously read the same current game state; eventual consistency would create conflicting game states visible to different players — B is correct because real-time multiplayer gaming requires strong consistency to ensure all players see the identical game state simultaneously. In a GCDL context, this means the database must support ACID transactions or linearizable reads (e.g., using Google Cloud Spanner or a strongly consistent NoSQL system like Cloud Firestore in strong consistency mode). Eventual consistency would allow different players to observe different board positions, breaking the game's core requirement of a shared, current state.
What should I do if I get this GCDL 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 →
Keep practising
More GCDL practice questions
- A DevOps team wants to adopt GitOps practices for managing their Google Cloud infrastructure. Which combination of tools…
- A startup is building an application that sends daily promotional push notifications to millions of mobile users on both…
- An organization's leadership wants to foster a 'fail fast' culture to accelerate innovation. A cloud environment directl…
- A company's on-premises applications occasionally need more compute capacity than their own infrastructure can provide (…
- A digital media company hosts video content globally. They want to reduce origin server load and deliver content faster…
- A security audit finds that a company's application service accounts have been granted broad IAM roles (e.g., Storage Ad…
Last reviewed: Jun 11, 2026
This GCDL 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 GCDL 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.