f452

?
Variable
An allocated space in memory with a given identifier and datatype. Value can change during execution of the program.
1 of 45
Constant
A placeholder in memory whose value cannot change during the execution of the program
2 of 45
Local variable
A variable which only exists with a given area of a program, e.g. a sub-routine.
3 of 45
Global variable
A variable which exists throughout a whole program.
4 of 45
Scope
The scope of a variable is the area in which it exists.
5 of 45
Selection
A way of controlling the flow of a program by choosing which statements get executed based on a condition.
6 of 45
Algorithm
A set of instructions designed to solve a problem. Can be described using a flowchart or pseudo-code.
7 of 45
Iteration (repetition)
Where a piece of code it executed more than once based on a condition
8 of 45
While loop
Code is executed while a condition is true. Of the format; While condition Code Wend
9 of 45
(repeat until)
loop Code is executed whilst a condition is false.
10 of 45
For loop
A count-controlled loop. Executes a set number of times. Of the format For i = 1 to 10 Code Next i
11 of 45
Infinite loop
A loop where it's stopping condition is never met. Will cause a run-time error.
12 of 45
Nesting
A loop within another loop
13 of 45
Expression
A statement which changes the value of a variable using arithmetic
14 of 45
Condition
A Boolean expression (e.g. returns true or false). Used in condition?controlled loops and If statements.
15 of 45
Assignment operator
Used to assign a value to a variable, e.g. Variable = Expression The variable is always on the left. An expression can simply be another variable.
16 of 45
Relational operator
Used to compare expressions to give a Boolean result, e.g. , =, , = e.g. a < b+ 1
17 of 45
Sequence
Code is run line by line in the order in which it is written starting from the top.
18 of 45
Parameter
When a sub-routine is declared the data items needed in is execution are declared as parameters. Parameters are given a name and datatype and are used in the sub?routine code, e.g. Sub doit(i as integer, name as string)
19 of 45
Function
Sub-routine which returns a single value to the code which is used as if it were a variable.
20 of 45
Procedure
Sub-routine which executes some code then the flow returns to whence it came.
21 of 45
Recursion
A sub-routine (function or procedure) which calls itself.
22 of 45
Pseudo code
Pseudo-code is a way of describing an algorithm without using an actual high-level language. Constructs such as if statements and loops are used. The code is a mixture of English and programming language.
23 of 45
Statement (instruction)
A single line code that is executed by the program.
24 of 45
Boolean operator
AND OR and NOT. Used to combine Boolean types in conditions.
25 of 45
Array
A data structure where more than one item of the same datatype can be stored using a single identifier.
26 of 45
2D Array
An array of arrays. Items are identified using two indexes.
27 of 45
Array index
Used to identify an item in an array.
28 of 45
Array bounds
The array bounds are the limits of the index.
29 of 45
Array Out of bounds error
Is where an index beyond the bounds is referred to. Will cause a run-time error.
30 of 45
Indentation
Indentation Used to make it clear where programming constructs begin and end,
31 of 45
Datatype
All data stored in memory must be of a pre-determined type. Each language has it's own set of datatypes which each have a set amount of memory reserved. Typically types include String Integer Real Boolean Date etc.
32 of 45
String
A datatype used to store textual information. Text can include letters, numbers and special characters
33 of 45
Boolean
A datatype which only has two possible values, true of false.
34 of 45
Integer
A datatype used to store whole numbers. Typically stored as 4 or 8 bytes.
35 of 45
Real
A datatype used to store floating point numbers.
36 of 45
sub routine
a self-contained block of code that usually performs one job.
37 of 45
Keyword
These are words that are already used in the programming language for a specific purpose such as IF, END etc
38 of 45
Assignment
Programs use variables that can be given different values while the program is running. The operation of setting an actual value to a variable is Assignment.
39 of 45
Access Mode
Most language will require the program to make the operating system aware that a file is about to be used. This is often done using an OPEN command. When the file is opened it is often necessary to specify how the file is going to be used
40 of 45
Alpha Testing
Alpha testing takes place within the company producing the software and employees of the company test the program as though they were potential users.
41 of 45
Beta Testing
Takes place after Alpha testing and is carried out when the software is nearly complete and very similar to the final product. It is released to users outside of the company who give their feedback on the features of the software and any
42 of 45
Borderline Data
Borderline data is the data just on the boundaries of what is accepted and what is rejected. Therefore testing of this data needs to be handled carefully to ensure that they are dealt with correctly
43 of 45
Breakpoints
Breakpoints are markers added to a line of code requesting that the program stop running when it gets to that line. At this point, the programmer can check to see if the code has run as expected so far. This helps narrow down where errors lie.
44 of 45
Dry run
In order to locate the cause and location of an error, it is useful to go through the code manually, executing and recording each line in turn as if you were the programmer. This is called a Dry Run
45 of 45

Other cards in this set

Card 2

Front

A placeholder in memory whose value cannot change during the execution of the program

Back

Constant

Card 3

Front

A variable which only exists with a given area of a program, e.g. a sub-routine.

Back

Preview of the back of card 3

Card 4

Front

A variable which exists throughout a whole program.

Back

Preview of the back of card 4

Card 5

Front

The scope of a variable is the area in which it exists.

Back

Preview of the back of card 5
View more cards

Comments

No comments have yet been made

Similar Computing resources:

See all Computing resources »See all Data structures resources »