Question:medium

What is the relationship between Cohesion and Coupling?

Show Hint

A tightly focused module needs fewer outside links, so watch what happens to coupling.
Updated On: Jul 2, 2026
  • High cohesion often leads to low coupling
  • High cohesion often leads to high coupling
  • Low cohesion often leads to low coupling
  • Cohesion and coupling are unrelated concepts
Show Solution

The Correct Option is A

Solution and Explanation

Idea: Track dependencies when a module is self-contained.

A cohesive module does one focused job with its own data, so it reaches out to others less. Less reaching out means the between-module links drop:
\[ \text{cohesion} \uparrow \;\Rightarrow\; \text{coupling} \downarrow \]
They are clearly related, not independent, and they move opposite ways. High cohesion pushes coupling down, which is the mark of clean design.
\[\boxed{\text{Option A: High cohesion often leads to low coupling}}\]
Was this answer helpful?
0