edited by
6,659 views
5 votes
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
edited by

1 Answer

Best answer
12 votes
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:

Related questions

5 votes
5 votes
4 answers
1
sh!va asked May 7, 2017
4,560 views
Which of the following is associated with objects?StateBehaviorIdentityAll of the above
7 votes
7 votes
6 answers
2
kauray asked May 7, 2017
7,047 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); ...
5 votes
5 votes
1 answer
4
sh!va asked May 7, 2017
7,483 views
The Linux command mknod myfifo b 4 16will create a character device if user is rootwill create a named pipe FIFO if user is rootwill create a block device if user is root...