Module 3: Arrays Flashcards

1
Q

What is an Array?

A

An array stores multiple values in a single variable.

Ex:

int[] numbers = {1,2,3,4,5};

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How do you loop through an array?

A
  1. Using a for - each loop (preferred way).

Ex:

int[] numbers = {1,2,3,4,5};
for(int x: numbers) {System.out.println(x);}

  1. Using the .length property in a for loop.

Ex:

int[] numbers = {1,2,3,4,5};
for(int x=0; x<numbers.length; x++)
{System.out.println(numbers[x]};

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is a multidimensional array?

A

An array of arrays.

Ex:

int[][] groups = {{1,2,3}, {4,5,6}};

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How do you loop through a multidimensional array?

A
  1. Using a nested for - each loop (preferred way).

Ex:

int[][] numbers = {{1,2,3,4}, {5,6,7}};
for (int[] row: numbers) {for (int i : row)
{System.out.println(i);}}

  1. Using the .length property in nested a for loop.

Ex.

int[][] numbers = {{1,2,3,4}, {5,6,7}};
for(int x=0; x<ages.length; x++) {for(int y=0; y<ages[x].length; y++) {System.out.println(ages[x][y]);}}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly