edited by
7,463 views
5 5 votes

Which of the following UML 2.0 diagrams capture behavioral aspects of a system?

  1. Use case diagram, Object diagram, Activity diagram and state machine diagram
  2. Use case diagram, Activity diagram and state machine diagram
  3. Object diagram, Communication Diagram, Timing diagram and Interaction diagram
  4. Object diagram, Composite structure diagram, package diagram and Deployment diagram

1 Answer

Best answer
12 12 votes

Answer is B

UML 2.0 diagrams capture behavioral aspects of a system :

  1. Activity diagram
  2. Communication Diagram
  3. Interaction diagram
  4. state machine diagram
  5. Timing diagram
  6. use case diagram

Structural diagrams

  1. class diagram
  2. component diagram
  3. Object diagram
  4. Composite structure diagram
  5. package diagram
  6. Deployment diagram

Reffer : Here

selected by
Answer:
Position:
Show:

Related questions

8 8 votes
1 answers 1 answer
7.4k
7.4k views
sh!va asked May 7, 2017
7,384 views
Estimation at software development effort for organic software in basic COCOMO is:E = 2.0 (KLOC) 1.05 PME = 3.4 (KLOC) 1.06 PME = 2.4 (KLOC) 1.05 PME = 2.4 (KLOC) 1.07...
5 5 votes
4 answers 4 answers
5.5k
5.5k views
sh!va asked May 7, 2017
5,508 views
Which of the following is associated with objects?StateBehaviorIdentityAll of the above
7 7 votes
6 answers 6 answers
9.2k
9.2k views
kauray asked May 7, 2017
9,183 views
What is the output of the C++ program? #include <iostream using namespace std; void square(int *x){ *x = (*x)++ * (*x); } void square(int *x, int *y){ *x = (*x) * (*y); ...
4 4 votes
2 2 answers
5.6k
5.6k views
Arjun asked Apr 22, 2018
5,579 views
Consider the following C++ programint a (int m) {return ++m;} int b(int&m) {return ++m;} int{char &m} {return ++m;} void main() { int p = 0, q=0, r = 0; p += a(b(p)) ; q+...