top of page

Basic Computer Programming Language

One Dimensional Arrays.

One Dimenisional Arrays consists of Two Variety of Data Content.

The Data Content stored in the Dimensional Arrays can Contain Numerical or String$ Content.

 

Line [2] Dim$(12) set the String$ Data Limit contained in the Array to a Limit of (12)

Line [3] Dim y(12) sets the Numerical Data Limit contained in the Array to a Limit of (12)

Line [10] Nested inside the For Next Loop will Execute and Print the Values of Both Dimensional Arrays.

 

Dimensional Arrays can be used to contain Data within a Program 

The Data then can be Executed in Various Proceedures Pending on the Type of Program.

 

 

bottom of page