Build fluency in the vocabulary of a term meaning something different in each subdomain's own model.
0 / 5 completed
1 / 5
At standup, a dev mentions that the word 'Customer' means something different, and is modeled differently, in the billing subdomain than it does in the support subdomain, and that's treated as expected rather than a bug to fix. What concept explains this?
A bounded context gives each subdomain its own explicit boundary within which a term like 'Customer' has one consistent meaning, even if that same word means something different, and is modeled with entirely different fields, in another subdomain. A read replica is an unrelated database scaling pattern. Recognizing this as expected, rather than a naming bug to fix, is a core idea in domain-driven design, since forcing one universal model of 'Customer' onto every subdomain usually produces a bloated, contradictory compromise.
2 / 5
During a design review, the team decides the billing subdomain's 'Customer' model should carry payment and invoicing fields, while the support subdomain's separate 'Customer' model carries ticket history and contact preferences, with no shared class between them. Which capability does this reflect?
This reflects each bounded context maintaining its own tailored model instead of forcing one shared model across unrelated subdomains, since billing's version of 'Customer' only needs payment-related fields while support's version only needs fields relevant to handling tickets. Building one single shared class forces both subdomains to carry fields they don't need and to coordinate every change through a single, increasingly bloated model. This separation is exactly what a bounded context is meant to enable.
3 / 5
In a code review, a dev notices a single 'User' class has accumulated dozens of fields relevant to billing, support, marketing, and authentication all at once, with unrelated teams routinely stepping on each other's changes to it. What does this represent?
This is a missing bounded context boundary letting one shared model absorb every subdomain's unrelated concerns, since billing, support, marketing, and authentication each have their own legitimate reasons to care about a 'user,' but none of them actually need the fields the others added. An anti-corruption layer is a different concept about translating a legacy system's concepts at a boundary. This kind of bloated, contended shared model is a common symptom that a codebase would benefit from splitting into separate bounded contexts instead.
4 / 5
An incident report shows a field the authentication team added to the shared 'User' model, meant only for login state, was misinterpreted and misused by the marketing team's code, which had no context for what that field actually meant. What practice would prevent this?
Splitting the shared model into separate bounded contexts, each with its own tailored model scoped to what that subdomain actually needs, means a field the authentication team adds for login state simply doesn't exist in the marketing team's own context, so there's no field left to misinterpret. Continuing to pile every team's fields onto the same shared model is exactly what let the marketing team misuse a field meant for a completely different purpose in this incident. This separation into distinct contexts is the standard fix once a shared model has started causing this kind of cross-team confusion.
5 / 5
During a PR review, a teammate asks why the team maintains a separate 'Customer' model per bounded context instead of building one canonical shared model that every subdomain reuses, which seems like it would avoid duplication. What is the reasoning?
One canonical shared model forces every subdomain to coordinate changes through the same class, and in practice tends to accumulate fields that are only relevant to a subset of the subdomains reusing it, since each subdomain's real needs diverge over time. Separate per-context models let each subdomain evolve its own model independently, adding exactly the fields it needs without affecting any other subdomain's model at all. The tradeoff is the apparent duplication of having, for instance, two different 'Customer' concepts instead of one, which is a deliberate cost traded for each subdomain's model staying focused and independently evolvable.
What does the "Bounded Context Vocabulary" vocabulary exercise cover?
This exercise tests real IT vocabulary related to bounded context 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 11 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.