Array
A numbered row of boxes that holds many values under one name.
๐ In simple words
A numbered row of boxes that holds many values under one name.
๐ Technical definition
An ordered collection of elements accessed by integer index; in LearnWith pseudocode lists are indexed from 0.
Pseudocode example
1SET SCORES = [90, 75, 82]2DISPLAY SCORES[0]
๐ Real-world analogy
An egg carton: one container, many numbered slots.