Programming Flashcards
Integer?
A Whole number that can be positive or negative, including 0.
Real/Float?
A positive or negative number which can be have a fractional part.
Boolean?
A value which is either true or false.
Character?
A single number, letter or symbol.
String?
A collection of characters.
Date / Time?
A way of storing a point in time, different methods are used.
Records?
A collections of field.
Pointer / Reference?
A way of storing memory addresses.
Arrays?
An indexed set of elements, which each has the same data type.
Variable Declaration?
Creating a variable for the first time, which will need a name and sometimes a data type.
Constant Declaration
Creating a Variable but the value of a constant does not change while the program is running.
Assignment?
Giving a constant or variable to a value
Iteration?
Repeating a set of instruction, which can be definite or indefinite
Selection?
Comparing values, then selecting an action based on those values
Subroutine
A named block of code that contains a set of instructions that can be reused if the name given is called.