Tag Archives: Data Structure

One Dimensional Arrays

A 1D array is a data structure that can be thought of like a list. For example if you were asked to create a program that stores five names you might think that you could use 5 variables, what about a program that stores 20 or even 1000?

To create an array we use the DIM command but we add in a new piece of information.

DIM Number(5) as Integer

Continue reading One Dimensional Arrays