Arrays

An array is a data structure that orders several sets of data under one identifier.

Arrays are used because they are shorter than writing lists out individually. This means that the code is more efficient and easier to maintain.

Example:

array

array output

 

Although VB.net starts arrays at 0, in pseudocode arrays start at 1.

 

 

 

 

 

 

 

 

Leave a comment