1/3
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
No analytics yet
Send a link to your students to track their progress
definition of standard array
A sequential data structure that is homogeneous, meaning it can only store values belonging to the exact same data type.
question
Why can't a standard, single array store a list of student names alongside their test marks?
awnser
You must define Parallel Arrays (two separate arrays of different data types linked together by matching index numbers) or a 2D Array (a grid-like table structure where rows represent individual students and columns represent their different test marks).
.
.