Learn the vocabulary of data types that let replicas converge deterministically without coordination, even across partitions.
0 / 5 completed
1 / 5
A teammate explains that a distributed data type is designed so that any two replicas, having received the same set of updates in any order, always converge to the identical final state, with no coordination or conflict-resolution round trip required between replicas. What class of data structure is being described?
A conflict-free replicated data type, or CRDT, is exactly this: it is mathematically designed, often using commutative, associative, and idempotent merge operations, so that any two replicas that have received the same set of updates, in any order, converge to the identical final state with no coordination round trip and no manual conflict resolution needed. A DNS zone transfer is an unrelated concept about replicating name server records. This converge-without-coordination guarantee is exactly why CRDTs are favored for offline-first and multi-region collaborative applications.
2 / 5
During a design review, the team adopts a CRDT-based counter for a multi-region 'like' count that must keep accepting increments in every region even during a network partition between regions. Which capability does this provide?
A CRDT-based counter here provides partition-tolerant, coordination-free convergence, since each region's increments merge deterministically into the same final total once connectivity is restored, with no cross-region round trip required to accept an increment. Requiring a distributed lock across all regions before any increment is accepted would make the counter unavailable in any region cut off during a partition. This accept-locally-merge-later behavior is exactly why CRDTs are favored for multi-region counters that must stay available during partitions.
3 / 5
In a code review, a dev notices a multi-region 'like' counter requires a cross-region distributed lock before incrementing, making the counter unavailable in any region that loses connectivity, instead of using a CRDT counter that merges increments deterministically after the fact. What does this represent?
This is a missed CRDT opportunity, since a CRDT counter would let each region accept increments locally and merge them deterministically instead of requiring an unavailable cross-region lock. A cache eviction policy is an unrelated concept about discarded cache entries. This cross-region-lock-required pattern is exactly the kind of availability gap a reviewer flags once partition tolerance is required.
4 / 5
An incident report shows the 'like' counter stopped accepting increments in an entire region during a network partition, because incrementing required first acquiring a distributed lock held across all regions, and that region could not reach the lock service. What practice would prevent this?
Replacing the locked counter with a CRDT counter lets each region accept increments locally and merge them deterministically once connectivity is restored, so no region is blocked during a partition. Continuing to require a cross-region distributed lock before every increment regardless of how many regions become unreachable during a partition is exactly what caused the outage described in this incident. This accept-locally-merge-later approach is the standard fix once cross-region locking is confirmed to break availability during partitions.
5 / 5
During a PR review, a teammate asks why the team reaches for a CRDT instead of a strongly consistent, lock-coordinated counter, given that a coordinated counter never needs a merge step at all. What is the reasoning?
A CRDT trades a small amount of eventual-consistency lag and merge-function design effort for availability during partitions, while a lock-coordinated counter guarantees immediate global consistency but becomes unavailable in any region that cannot reach the coordination service. This is exactly why CRDTs are favored for multi-region, partition-tolerant counters and collaborative data, while lock-coordinated counters remain preferable when immediate global consistency matters more than availability during a partition.
What does the "CRDT Vocabulary" vocabulary exercise cover?
This exercise tests real IT vocabulary related to crdt vocabulary through 5 multiple-choice questions, each built from realistic workplace sentences rather than abstract definitions.
Is this vocabulary exercise free to use?
Yes. Every exercise on CoderSlingo, including this one, is completely free — no account, sign-up, or payment required.
How many questions does this exercise have?
This exercise has 5 questions. Each one shows a real-world sentence or scenario with multiple-choice options and an explanation once you answer.
What happens after I answer a question?
You'll see immediate feedback showing whether your answer was correct, along with a short explanation of why — then a button to move to the next question, and a full results screen at the end.
Can I retry the exercise if I get questions wrong?
Yes. Once you reach the results screen, click "Try again" to reset your answers and go through the exercise from the start as many times as you like.
Do I need to create an account to take this exercise?
No account is needed. Your answers are scored in your browser during the session — nothing is saved to a server, so you can jump straight in.
Is my progress saved if I leave the page?
No — progress within an exercise resets if you navigate away or reload. Each exercise is short enough to complete in a few minutes in one sitting.
Are these vocabulary exercises connected to other topics?
Yes — this module shares real-world context with 9 other vocabulary modules. See "Related vocabulary" below to keep building a connected skill set.
How is this different from reading a glossary or blog article?
Exercises like this one are active recall drills — you have to choose the correct term or phrasing yourself, which builds retention faster than passively reading a definition.
Where can I find more vocabulary exercises?
Browse the full Vocabulary exercises hub for hundreds of modules covering Agile, DevOps, security, databases, architecture, and more — organised by IT role and skill.