No Image

Structure Chart example question

June 23, 2019 antony 0

Number1 ← 0 Number2 ← 0 Module calculateAverage           Average ← 0           Call inputNumbers()           Average ← Call average(Number1, Number2)           Call outputAverage(Average) End […]

No Image

Data types

November 18, 2016 antony 0

Computers store information as binary 1’s and 0’s.  These are known as bits.  Groups of 8 bits are bytes.  Ultimately, whatever data we store in […]

Structure Charts

July 16, 2016 antony 0

Structure charts show the functions/modules within software and the parameters passed between them.  Note: the only symbols you need to use are process and data […]