Final answer:
A value of a record type consists of a group of values of component types specified in the declaration of that record type.
Step-by-step explanation:
A value of a record type is composed of a group of values of component types specified in the declaration of that record type. In programming languages, a record type allows you to define a structure that consists of multiple fields, each with its own data type. The value of a record is created by assigning values to each of its components or fields.
For example, in a programming language like Python, you can declare a record type called 'Person' with components like 'name', 'age', and 'gender'. To create a value of the 'Person' record type, you would assign specific values to each of these components.