Flowchart
A classic step-by-step process flowchart using start/end, process, decision, and document nodes to standardize workflows.
π― What Problem It Solves
When explaining procedures or software logic in text, people miss branches, leading to errors. A flowchart provides a clear, visual standard.
π§ Thinking Logic & Core Concepts
A linear flow. Elements flow from Start to End. They undergo changes in Process steps and branch off at Decision points (e.g., Yes/No), eventually terminating at End.
π Newbie Step-by-Step Guide
- Start: Place a gray oval to mark the beginning.
- Add Steps: Connect rectangular process steps chronologically.
- Add Decisions: Use yellow diamonds for branches (e.g., Approved?).
- Add Documents: Use pink document nodes for reports or DB records.
- End: Close all branches at the gray oval end node.
π‘ Classic Example
[User Registration Approval Case]
- [Start] -> [User Submits Form] -> [Decision: Is form complete?]
- No -> [Prompt User to Complete] -> [User Submits Form].
- Yes -> [Review Form] -> [Decision: Approved?]
- No -> [Send Rejection Email] -> [End]
- Yes -> [Activate Account] -> [End]
