Question 277 of 1,000
mediumMultiple ChoiceObjective-mapped

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

LayerNamePDUKey Protocols / Devices
7ApplicationDataHTTP, HTTPS, DNS, SMTP, FTP, SSH
6PresentationDataTLS / SSL, JPEG, ASCII encoding
5SessionDataNetBIOS, RPC, SIP
4TransportSegment / DatagramTCP, UDP
3NetworkPacketIP, ICMP, OSPF — Routers
2Data LinkFrameEthernet, Wi-Fi, PPP — Switches, Bridges
1PhysicalBitsCables, NICs, Hubs, Repeaters

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.

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 →

How Courseiva writes practice questions · Editorial policy

Keep practising

More GCDL practice questions

Last reviewed: Jun 11, 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 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.