edited by
3,107 views
4 votes
4 votes

Match the following $:$

$\begin{array}{}  & \textbf{List – I} && \textbf{List – II} \\ \text{a.} & \text{Data Coupling} & \text{i. }& \text{Module A and Module B have shared data} \\ \text{b.}  & \text{Stamp Coupling} & \text{ii.} & \text{Dependency between modules is based on the} \\ &&& \text{fact they communicate by only passing of data.} \\ \text{c.} & \text{Common Coupling} & \text{iii.} & \text{When complete data structure is passed from} \\ &&& \text{one module to another} \\ \text{d.} & \text{Content Coupling} & \text{iv.} & \text{When the control is passed from one module to} \\ &&& \text{the middle of another} \\ \end{array}$

$\textbf{Codes :}$

  1. $\text{a-iii, b-ii, c-i, d-iv}$
  2. $\text{a-ii, b-iii, c-i, d-iv}$
  3. $\text{a-ii, b-iii, c-iv, d-i}$
  4. $\text{a-iii, b-ii, c-iv, d-i}$
edited by

1 Answer

6 votes
6 votes

Ans IS B

a. Data coupling       ii. Dependency between modules is based on the fact they communicate

                                            by   only passing of data

 b. Stamp coupling  iii. When complete data structure is passed from one module to another

c. Common coupling   i. Module A and Module B have shared data

dContent coupling iv. When the control is passed from one module to the middle of another
Answer:

Related questions

2 votes
2 votes
1 answer
1
go_editor asked Jul 24, 2016
3,140 views
In _____, modules A and B make use of a common data type, but perhaps perform different operations on it.Data couplingStamp couplingControl couplingContent coupling
3 votes
3 votes
1 answer
3