Difficulty: Easy
Correct Answer: Data flow diagram
Explanation:
Introduction / Context:Analysts use diagrams to visualize how an information system handles inputs, processes, data stores, and outputs. The data flow diagram is the standard notation for representing these flows at multiple levels of detail.
Given Data / Assumptions:
Concept / Approach:A data flow diagram shows processes as circles or rounded boxes, external entities as squares, data stores as open ended rectangles, and arrows for data movement. Leveling allows context diagrams, level 1, and more detailed decompositions to keep complexity manageable.
Step-by-Step Solution:
1) Identify external entities that send or receive information. 2) Define processes that transform inputs into outputs. 3) Specify data stores where information is kept. 4) Draw flows that connect entities, processes, and stores. 5) Validate completeness and balance across levels.Verification / Alternative check:Flowcharts emphasize program control paths. Histograms display distributions. Pictograms are informal visuals. Only data flow diagrams purpose built model system information flows.
Why Other Options Are Wrong:
Flowchart represents control logic, not system wide data movement. Pictogram is decorative or symbolic and lacks analytic rigor. Histogram shows frequencies, not processes and flows. Entity frequency chart is not a standard analysis artifact.Common Pitfalls:Mixing process steps with user interface screens and skipping data store definitions reduce clarity.
Final Answer:Data flow diagram.
Discussion & Comments