InterviewSolution
| 1. |
What do you mean by Cohesion and Coupling? |
|
Answer» Coupling: It is DEFINED as a RELATIONSHIP between software modules A and B, and how much one module depends or interacts with another one. Couplings fall into three major categories. Modules can be highly coupled (highly dependent), loosely coupled, and uncoupled from each other. The best kind of coupling is loose coupling, which is achieved through interfaces. |
|