InterviewSolution
Saved Bookmarks
| 1. |
What Are Arrays? |
|
Answer» ARRAYS are VARIABLES that store ITEMS of similar information.DIM ARRAY1 (4) (declares an ARRAY with the name array1 with 5 ELEMENTS). Arrays are variables that store items of similar information.DIM ARRAY1 (4) (declares an array with the name array1 with 5 elements). |
|