A vertical (up and down) series of data in a two-dimensional (2D) array
What is a column?
A horizontal (left to right) series of data in a two-dimensional (2D) array
What is a row?
Automatically converting an object of a wrapper class to its corresponding primitive type
What is unboxing?
Written descriptions of the purpose and functionality of code
What is documentation?
The smallest unit of information in an image
What is a pixel?
Traversing a 2D array by accessing each column from left to right
What is column-major order?
The outermost array of a two-dimensional array
What is the outer array?
A class used to convert primitive data types into objects
What is the Wrapper class?
The ability of a computer program to understand human language
What is Natural Language Processing?
A color model consisting of red, green, and blue lights to display images
What is RGB?
The process of dividing text into parts for analysis or conversion
What is parsing?
Traversing a 2D array by accessing each row from top to bottom
What is row-major order?
The ability to change after initialization
What is mutable?
The standard system for tagging text files to be displayed on the World Wide Web
What is HTML?
A class used for displaying images or playing sounds.
What is the Scene class?
The process of automatically converting a primitive type value into an object of the corresponding wrapper class
What is autoboxing?
The outermost array of a two-dimensional array
What is the outer array?
A data structure that grows and shrinks as needed
What is a dynamic data structure?
Allows a class, or type, to be used as the parameter to an ArrayList and is indicated by < >
What is generic type?
A class that creates animations by timing the display of text, images, and sounds
What is the Theater class?
An error that occurs when an operation makes an integer value less than its minimum
What is underflow?
An error that occurs when an operation makes an integer value greater than its maximum
What is overflow?
A class that represents a resizable list
What is ArrayList?
The documentation tool for Java that generates an HTML document from comments written inside /** */ and formatted using @ tags
What is JavaDocs?
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?