Objects and Classes
The method that creates a new object
What is Constructor Method?
ints, doubles, booleans; mutable and stored directly in memory
What are primitive data types?
Loop used when you know the number of iterations
What is a for loop?
int[][] myArray = new int[3][4];
What is creating a 2D array (row 3, col 4)
ArrayList<String> myArray = new ArrayList<>();
What is creation of an ArrayList?