Functional independenceA module having high cohesion and low coupling is said to be functionally independent of other modules. By the term functional independence, we mean that a cohesive module performs a single task or function. A functionally independent module has minimal interaction with other modules.Need for functional independenceFunctional independence is a key to any good design due to...
Monday, 31 March 2014
Coupling and its types | software design
Posted by Roy on 08:57
CouplingCoupling between two modules is a measure of the degree of interdependence or interaction between the two modules. A module having high cohesion and low coupling is said to be functionally independent of other modules. If two modules interchange large amounts of data, then they are highly interdependent. The degree of coupling between two modules depends on their interface complexity.Types...
Posted in Common coupling, Content coupling, Control coupling, Coupling, Data coupling, Stamp coupling, types of coupling
Cohesion and its type | software design
Posted by Roy on 08:48
Cohesion Cohesion is a measure of functional strength of a module. A module having high cohesion and low coupling is said to be functionally independent of other modules. By the term functional independence, we mean that a cohesive module performs a single task or function. A functionally independent module has minimal interaction with other modules.
Types of cohesion:
coincidental cohesion
logical...
Posted in Cohesion, coincidental cohesion, Communicational cohesion, Functional cohesion, logical cohesion, Procedural cohesion, Sequential cohesion, Temporal cohesion, types of cohesion
Monday, 24 March 2014
Software design and its types
Posted by Roy on 06:25
Software design deals with transforming the customer requirements, as described in the SRS document, into a form (a set of documents) that is suitable for implementation in a programming language. A good software design is seldom arrived by using a single step procedure but rather through several iterations through a series of steps.
Design activities can be broadly classified into two important...
Posted in Detailed design, preliminary design, Software design, Software design and its types
Subscribe to:
Posts (Atom)
Functional independence and its need | Software engineering