arrays Flashcards
(2 cards)
1
Q
what is an array
A
allows us to hold multiple variable values
2
Q
how to tell an array how many strings you want inside of it
A
string [] ANS = new string [2];
ANS[0] = “ANS”;
ANS[1] = “ANS”;
ANS[2] = “ANS”;