Save
Computing
Design
Save
Share
Learn
Content
Leaderboard
Share
Learn
Created by
Hannah Miller
Visit profile
Cards (13)
Parallel
1D arrays
Arrays
that store
data
of the same
data type
View source
Records
Can hold
related data
of
different types
View source
Arrays
of
records
An
array
that
stores records
View source
Parallel 1D arrays
Names
array
stores player
names
Scores
array
stores player
scores
View source
Player record
Can hold
name
and
score
data
View source
Array of player records
Can
store
names
and
scores
of
multiple
players
View source
Structure
diagram
Graphically
shows the
steps
needed to
solve
a problem
View source
Top level design
Shows the
major
steps of a program
solution
View source
Top level design for program to
read
names
/
IQs
,
calculate
average IQ,
find
highest IQ
Read
names
/
IQs
from file
Calculate
average IQ
Find
/display name of person with
highest
IQ
View source
Data flow
Shows
the information that will
flow
in
and
out
of
sub-programs
View source
Data flow for program to
read
names/IQs,
calculate
average IQ, find highest IQ
Arrows
show
data flow
in
/
out
of
each
sub-program
View source
Design refinements
Break
down
each
main
step into
smaller
steps
View source
Refinements for program to
read
names/IQs,
calculate
average IQ,
find
highest IQ
Detailed
steps for each
main
program component
View source