Activity Diagram

About

An Activity Diagram represents workflow or process flow in a system, describing sequential and parallel actions. It is widely used for business logic modeling and process visualization.

Key Elements

  1. Start & End Nodes

    • Represented by a black circle (start) and encircled black dot (end).

  2. Actions (Activities)

    • Represented as rounded rectangles.

    • Each action represents a step in the workflow.

  3. Transitions (Arrows)

    • Show the flow of execution between activities.

  4. Decision Nodes

    • Diamond shape, used for if-else conditions.

  5. Fork & Join Nodes

    • Represent parallel processing (splitting/joining flows).

  6. Swimlanes

    • Separate responsibilities of different entities in the process.

1. User Registration Process

This represents the User Registration Process in a web application.

Last updated