Difference: Activity Diagram and Sequence Diagram
Answers were Sorted based on User's Feedback
Answer / naveen sisupalan
Activity diagram is used to show identify the interaction
between domains and Sequence diagram is used to show the
logical execution flow of a business process.
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / ranjith
Activity diagrams :
are typically used for business process modeling,
for modeling the logic captured by a single use case
or usage scenario, or for modeling the detailed logic
of a business rule. This is the OOAD version of flowchart
or data flow diagram.
Sequence Diagrams:
model the flow of logic within your system in a visual manner,
enabling you both to document and validate your logic,
and are commonly used for both analysis and design purposes.
Sequence diagrams identify behavior within the system.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / mak
Sequence diagram is interaction of objects and time required for sequencing the object
Activity diagram flow of control among the processing step
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / appala naidu
sequence diagram is a diagram specify the time ordering
links in between objects.
| Is This Answer Correct ? | 0 Yes | 1 No |
What do you mean by polymorphism?
0 Answers InterGraph, Ittiam Systems,
Does a concept HAVE to become a class in Design?
Why do we separate interface from implementation?
Can a class in java be inherited from more than one class?
How to define an abstract class?
In winform my controls [taskbar and progressbar] become inactive when heavy processing is going in background, how to avoid this via multithreading
If a method definition has been specified in class , its base class , and the interface which the class is implementing, which definition will be picked if we try to access it using interface reference and class object?
What is the use if instanceof keyword?
Can you create an instance for an abstract class?
Why do we use oops concepts? What is its advantage?
What is the need of multiple inheritance?
Explian following terms: Constraint Rules, Design by contract.