record A data structure that allows for multiple variables of differing individual types to be held within it. allow data values of different types that relate to each other to be stored together instead of in different arrays. For example, a record could be declared to hold the information about a board game:
RECORD Boardgame
title
genre
numPlayers
minAge
maxAge
ENDRECORD
This would create a record that stores the title and genre as stringA sequence of characters often stored as a variable in a computer program. These characters can include numbers, letters and symbols. and the number of players, minimum age, and maximum age as integerA whole number - this is one data type used to define numbers in a computer program. Integers can be unsigned (represent positive numbers) or signed (represent negative or positive numbers).. Each board game would be created as a separate record which could then be held in an array, creating an array of records: