1V0-71.21 · Question #39
What are true statements about Microservices? (Choose two.)
The correct answer is B. They are decoupled. D. They are used to create modular applications. Microservices are decoupled (B) - each service runs independently with its own process and data, communicating via APIs - and they are specifically designed to create modular applications (D), where each module handles a distinct business capability that can be developed…
Question
What are true statements about Microservices? (Choose two.)
Options
- AThey don't scale.
- BThey are decoupled.
- CThey are tightly coupled together.
- DThey are used to create modular applications.
- EThey are centrally managed.
How the community answered
(59 responses)- A5% (3)
- B90% (53)
- C3% (2)
- E2% (1)
Explanation
Microservices are decoupled (B) - each service runs independently with its own process and data, communicating via APIs - and they are specifically designed to create modular applications (D), where each module handles a distinct business capability that can be developed, deployed, and scaled independently.
Why the distractors are wrong:
- A is the opposite of true - independent scaling per service is one of microservices' core advantages over monoliths.
- C describes a monolithic architecture; tight coupling is what microservices were designed to avoid.
- E is wrong because microservices are decentrally managed - each service owns its own data and logic, unlike SOA or monoliths with central governance.
Memory tip: Think of microservices as a set of LEGO bricks - each brick is a separate, independent module (D) that snaps on/off without affecting the others (B). If they were centrally managed or tightly coupled, they'd be one solid block - that's a monolith.
Topics
Community Discussion
No community discussion yet for this question.