Computing (FOLDOC) dictionary
Jump to user comments
programming (From "dimension") A
keyword in most versions
of the
BASIC programming language that declares the size of
DIM A(100)
declares a one-dimensional array with 101 numeric elements
(including A(0)).
variable declaration, even
scalars, e.g.
Dim DepartmentNumber As Integer
which declares a single (scalar) variable of type Integer.
(1999-03-26)