Arrays
Loops
Data Types
Classes
Methods
Washington Colleges
100

If i = 1, would array[i] be the first or second element in the array?

What is the second?

100
for (int i = 1; i > 0; i++)

What is a infinite loop?

100

Stores whole numbers from -2,147,483,648 to 2,147,483,647

What is an Int ?

100

True or False: Class does not occupy memory.

What is true?

100

This type of method has the same name as the class it's in.

What is a constructor method?

100

Tarik Skubal, MLB All-Star and Cy Young Award winner played baseball for which university?

What is Seattle University?

150

Trying to access an index that is negative or greater than or equal to the size of the array will generate which exception?

What is ArrayIndexOutOfBoundsException?


150

This loop will execute the code block once, before checking if the condition is true.

What is a Do / While Loop?

150

Stores true or false values.

What is a boolean?

150

Also known as a matrix.

What is a 2D or Multiarray?
150

Allows us to define multiple methods with the same name but different parameters within a class.

What is Method Overloading?


150
100 acres.
How many acres is the Bellevue College campus?
200

Through this concept arrays may hold objects of different class types that are extended from the same superclass.

Polymorphism

200

Cleaner and more readable than the traditional for loop and is commonly used when the exact index of an element is not required.

What is a for / each loop?

200

Stores fractional numbers. Sufficient for storing 15 to 16 decimal digits

What is a double?

200

These types of classes cannot be instantiated.

What is an abstract class?

200

The derived class provides a specific implementation for the method that is already defined in the parent class.

What is method overriding?

200

Which men's college basketball team played Kentucky in the 1958 national championship game?

Seattle University Chieftains (now Redhawks)

250

This method of the Arrays class into its string representation consisting of a list of the array’s elements. 

What is Arrays.toString() ?

250

This loop is used when we want to check the condition before executing the loop body

What is a while loop?

250

Stores whole numbers from -128 to 127

What is a byte?

250

Java classes default to this access level.

What is package-private access?


250

The practice of using variables in overlapping scopes with the same name, where the variable in the lower-level scope overrides the variable in the higher-level scope.

What is shadowing?

250

The following artists both attended which university?

Quincy Jones, Duff McKagan, (bassist of Guns N' Roses)

Seattle U

300

Similar to simple arrays, this collection class includes index addresses and may be dynamically resized.

What is ArrayList?


300

Used when we know the number of iterations (we know how many times we want to repeat a task).

What is the for loop.

300

When you assign a value of one primitive data type to another type.

What is type casting?

300

When an object of a class is created, the class is said to be this ...

What is instantiated?


300

Args in the main method declaration. 

What is the name of the parameter which is an array of strings to hold command line arguments?

300

1966

What is the year Bellevue College was founded?

350

Method To sort the elements of an array in ascending order.

What is Arrays.sort()?

350

This expressoin can be used in place of a series of "if" statements.

What is a switch statement?

350

These series of characters are actually objects of a class.

What are strings?

350

Instantiates a class by allocating memory for a new object.

What is the new operator?

350

The access level modifier of the main method.

What is public?

350

1861

What year was UW founded?

400

An array of 2D arrays.

What are three dimensional arrays?

400

What is the purpose of the continue statement in a loop?

What is, to skip the current iteration and move to the next iteration.

400

What IDE stands for.

What is Integrated Development Environment?


400

A reference variable that refers to the current object on which the method or constructor is being invoked.

What is "this" ?

400

What is the default return type of a method in Java if none is specified?

What is; Java requires specifying the return type. If omitted, it results in a compilation error.

400

Steve Gajkowski, 1990 Seattle Mariners, played baseball for which college?

What is Bellevue College?