teach-ict.com logo

THE education site for computer science and ICT

Array

A computer programming term.

An 'array' is very common data type in computer programs. An array allows you to handle single column lists, double column list and more.

For example a 'one dimesional' array could store a list of names

Index Name
0 John
1 Sarah
2 Henry
3 Emma
4 Tom
and so on.

Notice that most programming languages have the first element of an array at position zero, not 1.

Challenge see if you can find out one extra fact on this topic that we haven't already told you

Click on this link: Array

2020-10