Glossary (Programming)
- algorithmA sequence of logical instructions for carrying out a task. In computing, algorithms are needed to design computer programs.
- BASICA group of general-purpose, high-level programming languages that are relatively easy to use. BASIC stands for Beginner's All-purpose Symbolic Instruction Code.
- executeTo run a computer program.
- flowchartA diagram that shows a process, made up of boxes representing steps, decision, inputs and outputs.
- instructionA single action that can be performed by a computer processor.
- JavaA popular high-level computer programming language.
- machine codeAlso called object-code, this is low-level code that represents how computer hardware and CPUs understand instructions. It is represented by either binary or hexadecimal numbers.
- programSequences of instructions for a computer.
- programmingThe process of writing computer software.
- programming languageA language used by a programmer to write a piece of software.
- pseudocodeAlso written as pseudo-code. A method of writing up a set of instructions for a computer program using plain English. This is a good way of planning a program before coding.
- PythonA high-level programming language.
- ScratchA high-level programming language that is presented in graphical blocks.
- statementThe smallest element of a programming language which expresses an action to be carried out.