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
what can each index in the array can be
a literal
expression
NoughtsAndCrosses[2,3] ← 'x'what does this do
x goes into the 3x3 grid in the location of row 2, column three.
how would you use a for loop in an array
FOR index ← 1 TO 30
________ studentsname[index] ← ““
NEXT index
how can you assign a compete array
<identifier> ←- <identifier>