Going Down?
Elbow Room
Never the Same
Write this down!
Picture this
100

A vertical (up and down) series of data in a two-dimensional (2D) array

What is a column?

100

A horizontal (left to right) series of data in a two-dimensional (2D) array

What is a row?

100

Automatically converting an object of a wrapper class to its corresponding primitive type

What is unboxing?

100

Written descriptions of the purpose and functionality of code

What is documentation?

100

The smallest unit of information in an image

What is a pixel?

200

Traversing a 2D array by accessing each column from left to right

What is column-major order?

200

The outermost array of a two-dimensional array

What is the outer array?

200

A class used to convert primitive data types into objects

What is the Wrapper class?

200

The ability of a computer program to understand human language

What is Natural Language Processing?

200

A color model consisting of red, green, and blue lights to display images

What is RGB?

300

The process of dividing text into parts for analysis or conversion

What is parsing?

300

Traversing a 2D array by accessing each row from top to bottom

What is row-major order?

300

The ability to change after initialization

What is mutable?

300

The standard system for tagging text files to be displayed on the World Wide Web

What is HTML?

300

A class used for displaying images or playing sounds.

What is the Scene class?

400

The process of automatically converting a primitive type value into an object of the corresponding wrapper class

What is autoboxing?

400

The outermost array of a two-dimensional array

What is the outer array?

400

A data structure that grows and shrinks as needed

What is a dynamic data structure?

400

Allows a class, or type, to be used as the parameter to an ArrayList and is indicated by < >

What is generic type?

400

A class that creates animations by timing the display of text, images, and sounds

What is the Theater class?

500

An error that occurs when an operation makes an integer value less than its minimum

What is underflow?

500

An error that occurs when an operation makes an integer value greater than its maximum

What is overflow?

500

A class that represents a resizable list

What is ArrayList?

500

The documentation tool for Java that generates an HTML document from comments written inside /** */ and formatted using @ tags

What is JavaDocs?

500

for (int row = 0; row < pixels.length; row++) {

    for (int col = 0; col < pixels[0].length; col++) {

        Pixel currentPixel = pixels[row][col];                          currentPixel.setGreen(0);

}}

  What is removeGreen method?