Difference: Activity Diagram and Sequence Diagram
Answer Posted / 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 |
Post New Answer View All Answers
What is static polymorphism?
Explain what is meant by polymorphism?
What are different ways to create string object?
What is the difference between an error and an exception?
What are inner classes and what is the practical implementation of inner classes?
What is the difference between an Abstract class and Interface?
What are all the operators that cannot be overloaded?
What is the main difference between overloading and overriding?
Why does java not support multiple inheritance?
What do you mean by abstract class?
What are the major differences between late and dynamic binding?
What is a static method? Why do we need static methods in java 8 interfaces?
What is a ternary operator?
What are the limitations of oops?
Can I implement polymorphism using abstract class?