Q1)Program design concept always emphasized on reducing coupling and increasing cohesion. Explain coupling and cohesion and specify any TWO (2) levels of coupling and TWO (2) levels of cohesion.
Q1)
Explain coupling and cohesion and specify any TWO (2) levels of coupling and TWO (2) levels of cohesion.
In software engineering, the coupling is the degree of interdependence between software modules. Two modules that are tightly coupled are strongly dependent on each other. However, two modules that are loosely coupled are not dependent on each other. Uncoupled modules have no interdependence at all within them.A good design is the one that has low coupling. Coupling is measured by the number of relations between the modules. That is, the coupling increases as the number of calls between modules increase or the amount of shared data is large. Thus, it can be said that a design with high coupling will have more errors.
Stamp Coupling: Two modules are stamp coupled if they communicate using composite data items such as structure, objects, etc. When the module passes non-global data structure or entire structure to another module, they are said to be stamp coupled. For example, passing structure variable in C or object in C++ language to a module.
Control Coupling: Control Coupling exists among two modules if data from one module is used to direct the structure of instruction execution in another.
Coupling: External Coupling arises when two modules share an externally imposed data format, communication protocols, or device interface. This is related to communication to external tools and devices.
Common Coupling: Two modules are common coupled if they share information through some global data items.
Step by step
Solved in 2 steps