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 are different types of arguments?
What are the basic concepts of oop?
Can we have a default method definition in the interface without specifying the keyword "default"?
Can you create an instance of an abstract class?
What are abstract classes?
Does java support multiple inheritance? if not, what is the solution?
What is a virtual function?
What is hybrid inheritance?
What is the default access modifier for a class,struct and an interface declared directly with a namespace?
What is composition? Explain the purpose of composition.
What is polymorphism? When is it employed? give an example.
Differentiate between data abstraction and encapsulation.
Can an interface implement or extend another interface?
What is the main difference between overloading and overriding?
Explain about multiple inheritance?