T7 Flashcards
Purpose of a computer programe
A computer program is a specific set of ordered
instructions to be performed by a computer.
List the 4 IDE’s
Project File Management Support, GUI Builder,
Syntax Checker and Debugging Tools.
Process of Translation
Code written in a high-level language can be read and understood by
humans and requires translation so that the computer can execute the commands in the
program.
Algorithm
The sequence of steps designed to solve a particular problem. Written
in pseudocode.
Syntax
The set of rules defining the format/structure of each type of
programe statement.
Variable
The name/identifier of a memory location which holds data during
program execution.
Data Type
A description of the kind of data which is stored or manipulated in a
variable.
Sequence
A series of instructions is executed in the order in which
they are listed.
Selection
An action will be executed only if a condition is true
Iteration
A statement or sequence of statements can be executed more than once
Count Controlled Loop
A variable governs the number of times the
loop is executed … for which start/end/increment values are specified.
Condition Controlled Loop
The loop is controlled by a Boolean variable/one which is
either true or false the condition may be tested at the start of the loop (while) or at the end
of the loop (until)