What are DF Diagrams , and how they help project managers in their job?
what are the Data Flow Diagrams DFD?
6.7k Views Asked by Sulaiman At
3
There are 3 best solutions below
0

Data Flow Diagram (DFD) is graphical representation of flow of data/info. It is used to show how data is moved between different processes.
There are 4 basic notation elements:
- Circle: Operation
- Box: Sink of information, (input/output)
- Parrallel Bar: Data store / File / Database
- Arc: Flow of info/data
DFS's are in problem domain rather than in solution domain. They are basicly top level model of how something operates based on flow of information. Also there is no support for concurrency representation in DFD.
Following is an example:
As you can see, is a data flow diagram a diagram that shows the dataflow in an application.
At the highest level you have the context diagram that can be represented as:
As you see, there are functions and data stores. Functions can change the data and datastores are used to store and retrieve the data.