Data structure:
An organised collection of related elements. Arrays and records are 2 common data structures used in programming.
Two-Dimensional array:
a matrix of rows and columns resembling a table. 2 indices are used, one to reference the rows and other the columns. All the elements of a 2 dimensional array share the same data type.
Record:
A data structure that stores a set of related values of different data types.
Field:
An individual element in a record.