| Conjecture | Integer variable (named rainfall) | An array of integers (named rainfall) |
| Holds data | ||
| Holds multiple values simultaneously | ||
| Can use = to assign to another variable | ||
| When used as a parameter, it is passed using the call by value convention | ||
| rainfall[0] is syntactically valid | ||
| Can compare to another variable using == | ||
| rainfall = {1,2,3,4,5} is legal |