edited by
1,491 views
2 votes
2 votes

Match each application/software design concept in List-I to its definition in List-II.

$\begin{array}{clcl}  & \textbf{List-I} && \textbf{List-II} \\ \text{I.} & \text{Coupling} & \text{(a)} & \text{Easy to visually inspect the design of the} \\ &&&\text{software and understand its purpose} \\ \text{II.} & \text{Cohesion} & \text{(b)} & \text{Easy to add functionability to a software}  \\&&& \text{without having to redesign it}  \\ \text{III.} & \text{Scalable} & \text{(c)} & \text{Focus of a code upon a single goal}  \\ \text{IV.} & \text{Readable} & \text{(d)} & \text{Relaince of a code module upon other code} \\ &&&\text{modules} \\  \end{array}$

$\textbf{Codes :}$

  1. $\text{I-b, II-a, III-d, IV-c}$
  2. $\text{I-c, II-d, III-a, IV-b}$
  3. $\text{I-d, II-c, III-b, IV-a}$
  4. $\text{I-d, II-a, III-c, IV-b}$
edited by

1 Answer

0 votes
0 votes
C is Ans.

Standard Statement:--Coupling Should be low Cohesion Should be high.

Readable and Scalable are explained in Option C ;)
Answer:

Related questions

4 votes
4 votes
1 answer
4