Bit324 Topic 7
Bit324 Topic 7
and
Implementation
BIT324
DATA AND PROCESS MODELING
Chapter Objectives 2
DFD Symbols
Data Flow Diagrams 8
DFD Symbols
Process symbol
Receives input data and produces output that has a
different content, form, or both
Contain the business logic, also called business rules
Referred to as a black box
Data Flow Diagrams 9
DFD Symbols
Data flow symbol
Represents one or
more data items
The symbol for a
data flow is a line
with a single or
double arrowhead
Spontaneous
generation
Black hole
Gray hole
Data Flow Diagrams 10
DFD Symbols
Datastore
symbol
Represent data
that the system
stores
The physical
characteristics of
a data store are
unimportant
because you are
concerned only
with a logical
model
Data Flow Diagrams 11
DFD Symbols
Entity Symbol
Name of the
entity
appears
inside the
symbol
Creating a Set of DFDs 12
Modular Design
Based on combinations of three logical structures,
sometimes called control structures, which serve as
building blocks for the process
Sequence
Selection
Iteration - looping
Process Description Tools 34
Structured English
Must conform to the following rules
Use only the three building blocks of sequence,
selection, and iteration
Use indentation for readability
Use a limited vocabulary, including standard terms
used in the data dictionary and specific words that
describe the processing rules
Process Description Tools 35
Structured English
Might look familiar to programming students
because it resembles pseudocode
The primary purpose of structured English is to
describe the underlying business logic
Process Description Tools 36
Decision Tables
Shows a logical structure, with all possible
combinations of conditions and resulting actions
It is important to consider every possible outcome to
ensure that you have overlooked nothing
Process Description Tools 37
Decision Tables
The number of rules doubles each time you add a
condition
Can have more than two possible outcomes
Often are the best way to describe a complex set
of conditions
Process Description Tools 38
Decision Trees
Logical Versus Physical 39
Models
While structured analysis tools are used to
develop a logical model for a new information
system, such tools also can be used to develop
physical models of an information system
A physical model shows how the system’s
requirements are implemented
Logical Versus Physical 40
Models
Sequence of Models
Many systems analysts create a physical model of
the current system and then develop a logical
model of the current system before tackling a
logical model of the new system
Performing that extra step allows them to
understand the current system better
Logical Versus Physical 41
Models
Four-Model Approach
Develop a physical model of the current system, a
logical model of the current system, a logical model
of the new system, and a physical model of the
new system
The only disadvantage of the four-model approach
is the added time and cost
Chapter Summary 42
Chapter complete