GCSE Computer Science / Component 02 / Computational Thinking , Algorithms And Programming Flashcards
In a flowchart, what does a diamond represent ?
Decisions, often a ‘yes’ or a ‘no’.
In a flowchart, what does a rectangle represent ?
A general instruction, process or calculations.
In a flowchart, what does a parallelogram represent ?
Anything that is put into or taken out of the algorithm.
In a flowchart, what does a rectangle with rounded corners represent ?
The beginning and end of the algorithm.
State an example of and briefly describe what an integer is.
0, 6, 10289. Whole numbers only.
State an example of and briefly describe what a real ( or float ) is.
0.15, -4.688. Number that have a decimal.
State an example of and briefly describe what a boolean is.
True/false. 1/0. Can only take two values.
State an example of and briefly describe what a character is.
“A”, “5”. A single letter, number or symbol.
State an example of and briefly describe what a string is.
“TfuI35F”, “$money$”. Used to represent text, a collection of characters.
Define a range check.
Checks data is within a specified range.
Define a presence check.
Checks data has actually been entered.
Define format check.
Checks data has the correct format. ( eg. dd/mm/yyyy )
Define a look-up table.
Checks data against a table of acceptable values.
Define length check.
Checks data is the correct length.
Define a translator.
A program that turns a programming language into machine code.