Arrays indices Flashcards
To help think quicker on array indices.
1
Q
Winners = [John, Jill, Mike, Michelle]
The first winner is:
A
at 0 and is John.
2
Q
Winners = [John, Jill, Mike, Michelle]
The second winner is:
A
at 1 and is Jill.
3
Q
Winners = [John, Jill, Mike, Michelle]
The third winner is:
A
at 2 and is Mike.
4
Q
Winners = [John, Jill, Mike, Michelle]
The fourth winner is:
A
at 3 and is Michelle.
5
Q
Winners = [John, Jill, Mike, Michelle]
The winner at 0 is:
A
the 1st winner and is John.
6
Q
Winners = [John, Jill, Mike, Michelle]
The winner at 1 is:
A
the 2nd winner and is Jill.
7
Q
Winners = [John, Jill, Mike, Michelle]
The winner at 2 is:
A
the 3rd winner and is Mike.
8
Q
Winners = [John, Jill, Mike, Michelle]
The winner at 3 is:
A
the 4th winner and is Michelle.