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 […]

Data validation

June 11, 2017 antony 0

Data validation is important in various areas of computer science – database data entry, data warehousing, program input, networking.  Any time data is communicated it […]

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 […]

Trace table

August 13, 2015 antony 0

Trace tables are used to test the logic in algorithms, they should come after creating pseudocode, not after applying the code in a programming language. […]