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?

200

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?


200

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

What is a Do / While Loop?

200

Stores true or false values.

What is a boolean?

200

Also known as a matrix.

What is a 2D or Multiarray?
200

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

What is Method Overloading?


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

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

Polymorphism

300

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?

300

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

What is a double?

300

These types of classes cannot be instantiated.

What is an abstract class?

300

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

What is method overriding?

300

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

Seattle University Chieftains (now Redhawks)

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?

500

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

What is Arrays.toString() ?

500

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

What is a while loop?

500

Stores whole numbers from -128 to 127

What is a byte?

500

Java classes default to this access level.

What is package-private access?


500

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?

500

The following artists both attended which university?

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

Seattle U

600

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

What is ArrayList?


600

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

What is the for loop.

600

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

What is type casting?

600

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

What is instantiated?


600

Args in the main method declaration. 

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

600

1966

What is the year Bellevue College was founded?

700

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

What is Arrays.sort()?

700

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

What is a switch statement?

700

These series of characters are actually objects of a class.

What are strings?

700

Instantiates a class by allocating memory for a new object.

What is the new operator?

700

The access level modifier of the main method.

What is public?

700

1861

What year was UW founded?

M
e
n
u