---
title: "Explain in brief about Cohesion and Coupling in software engineering."  
description: "Explain in brief about Cohesion and Coupling in software engineering."  
author: "Revati S Misra"  
published: 2023-04-05  
updated: 2023-04-14  
canonical: https://www.mindstick.com/forum/157700/explain-in-brief-about-cohesion-and-coupling-in-software-engineering  
category: "software engineering"  
tags: ["software development", "software"]  
reading_time: 2 minutes  

---

# Explain in brief about Cohesion and Coupling in software engineering.

[Explain in brief](https://www.mindstick.com/forum/157681/explain-in-brief-about-the-access-control-list-in-os) about [Cohesion](https://answers.mindstick.com/qa/96757/what-is-cohesion) and [Coupling](https://answers.mindstick.com/qa/96767/what-is-coupling) in [software engineering](https://www.mindstick.com/blog/11283/sei-cmm-model-software-engineering-institute-capability-maturity-model).

## Replies

### Reply by Krishnapriya Rajeev

**Cohesion** refers to the degree of relatedness and unity of the functionality within a single module or component of a [software](https://www.mindstick.com/articles/311636/best-freelancing-websites-to-get-software-development-services) system. In other words, it measures how well the functions or responsibilities of a module are organized and related to each other.

High cohesion means that a module has a clear and well-defined purpose, and its functions work together toward that purpose. Low cohesion means that a module has multiple unrelated or loosely related functions, which may lead to complexity, difficulty in maintenance, and low reusability.

Good cohesion is important because it promotes modularity, scalability, and maintainability of the software system.

**Coupling** refers to the degree of interdependence and interconnectedness between different modules or components of a software system. In other words, it measures how tightly coupled the modules are with each other.

The high coupling means that a change in one module may have a significant impact on other modules, and it may lead to difficulty in maintenance, testing, and reusability. Low coupling means that the modules are independent and can be changed or replaced without affecting other modules.

Good coupling is important because it promotes flexibility, extensibility, and reusability of the software system.

Cohesion and coupling are two important principles that should be considered during the software design process to ensure a *high-quality, maintainable,* and *scalable software system.* High cohesion and low coupling promote modularity, flexibility, and reusability, while low cohesion and high coupling may lead to complexity, difficulty in maintenance, and low reusability.


---

Original Source: https://www.mindstick.com/forum/157700/explain-in-brief-about-cohesion-and-coupling-in-software-engineering

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
