edited by
2,378 views
2 votes
2 votes

Match the following with respect to relationship objects and classes $:$

$\begin{array}{} & \textbf{List – I} && \textbf{List – II} \\ \text{a.} & \text{State diagram} & \text{i.} & \text{Useful for both abstract modelling and for} \\\ &&& \text{designing actual program} \\ \text{b.} & \text{Object diagram} & \text{ii.} & \text{Describe object classes} \\ \text{c.} & \text{Class diagram} & \text{iii.} & \text{Useful for documenting test cases} \\ \text{d.} & \text{Instance diagram} & \text {iv.} & \text{Describing the behaviour of a single class of} \\ & &&\text{the obeiects}\\  \end{array}$

$\textbf{Codes :}$

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

1 Answer

Best answer
1 votes
1 votes

ans is A

 state diagram is a type of diagram used in computer science and related fields to describe the behavior of systems. State diagrams require that the system described is composed of a finite number of states

In software engineering, a class diagram in the Unified Modeling Language (UML) is a type of static structure diagram that describes the structure of a system by showing the system's classes, their attributes, operations (or methods), and the relationships among objects.

An InstanceDiagram is a part of the UnifiedModelingLanguage that one does not see mentioned too often. The basic idea is to make a static snap shot of instances (not classes) in your system or subsystem. Make it show exactly who points to whom.

Object diagrams are derived from class diagrams so object diagrams are dependent upon class diagrams.Object diagrams represent an instance of a class diagram. The basic concepts are similar for class diagrams and object diagrams. Object diagrams also represent the static view of a system but this static view is a snapshot of the system at a particular moment.Object diagrams are used to render a set of objects and their relationships as an instance.

selected by
Answer:

Related questions

2 votes
2 votes
1 answer
1
2 votes
2 votes
1 answer
2
2 votes
2 votes
1 answer
3
go_editor asked Jul 27, 2016
1,336 views
Match the following style rules for reusability $:$$\begin{array}{} & \textbf{List – I} && \textbf{List – II} \\ \text{a.} & \text{Keep methods coherent} & \text{i....