Arrays
2D Arrays
ArrayList
Inheritence
Loops
100

The types of items you can store in an array.

What are ints, doubles, and strings?

100

The correct way to declare a 2D array.

What is type[][] name = new type[row length][column length];?

100

This is the name of the class that extends from a super class?

What is a subclass?
100
This is what a loop is.

What is a way to iterate through items?

200

The correct way to declare a new array.

What is type[] name = new type[length];?

200

This happens when you try to call an element in a 2D array but the index does not exist?

What is an IndexOutOfBounds error?

200

This is the correct way to declare an ArrayList.

What is ArrayList<type> name = new ArrayList<type>();?

200

This is number of super classes a class can inherit from.

What is 1?

200

These are the types of errors in loops.

What are initialization, off by one, infinite loop, and update?

300

The index of the last object in an array is the same number as the length.

What is no?

300

It is possible to change the size of a 2D array after it has been created.

What is no?

300

This is what you use to alter the elements in an ArrayList?

What are methods?

300

This happens when the constructor from the super class is not called.

What is a default constructor?

300

This loop keeps going until a condition is untrue.

What is a while loop?

400

It is possible to declare and initialize an array in one step.

What is yes?

400

The row length of this 2D array is.

int[][] cards = new int[8][9]

What is 8?

400

This is where you can find the ArrayList class.

What is the Java standard class library?

400

This is the correct way to call a method from a super class?

What is super.methodName();?

500

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

The length of this array is

What is 5?