Objects and Classes
Data
Iterations
2D arrays
ArrayLists
100

The method that creates a new object

What is Constructor Method?

100

ints, doubles, booleans; mutable and stored directly in memory

What are primitive data types?

100

Loop used when you know the number of iterations

What is a for loop?

100

int[][] myArray = new int[3][4];

What is creating a 2D array (row 3, col 4)

100

ArrayList<String> myArray = new ArrayList<>();

What is creation of an ArrayList?