Structure Chart example question
Number1 ← 0 Number2 ← 0 Module calculateAverage Average ← 0 Call inputNumbers() Average ← Call average(Number1, Number2) Call outputAverage(Average) End […]
Number1 ← 0 Number2 ← 0 Module calculateAverage Average ← 0 Call inputNumbers() Average ← Call average(Number1, Number2) Call outputAverage(Average) End […]
Data validation is important in various areas of computer science – database data entry, data warehousing, program input, networking. Any time data is communicated it […]
Each line of code which performs an action is a statement. When a statement tests if something is true or false it is a control […]
Local A local variable is only available to the module (or block of code) it is within. That is its “scope”. FUNCTION addThis(a, b) total […]
Variable A variable exists to store a value in a location (in memory) identified by a symbol (a name). When creating a variable we identify […]
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 […]
Recap of both the videos above:
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. […]
Binary Base 2. 0’s and 1’s. Binary is how all computers store and deal with data, whether that data is representing numbers, words, images, audio, […]
Copyright © 2025 | WordPress Theme by MH Themes