Adding Value
What is the Value?
Build IT
The Foundation
Edits and Errors
100

Where a variable can be used.

What is Scope?



100

Giving a name and data type to a variable.

What is Declaration?

100

A keyword used to refer to the current object in a method or constructor.

What is the This keyword?

100

A collection of methods or reusable components of code.

What is a Library?

100

The entering data that is operated on.

What is an Operand?

200

A variable declared and accessible within a specific block of code (limited scope).

What is a Local Variable?

What is Private Variable?

200

A source code representation of a value, such as a number or text.

What is a Literal?

200

To define a method in a subclass with the same method signature as a method inherited from a superclass.

What is Override?

200

To reduce the amount of repetition in a program (Don't repeat yourself)

What is the DRY Principle?

200

To cut off data from the end.

What is Truncate?

300

A variable defined in a class that represents an attribute of an object.

What is an Instance Variable?

300

Copying the value of the actual parameter to the constructor's formal parameter.

What is Call By Value?

300

A method that changes the value stored in an instance variable.

What is a Mutator Method?

300

The building blocks needed to create a software program. It provides the guidelines that guarantee that all programs that use them will have similar interfaces across operating systems and hardware platforms.

What is API?

300

Starts with a \ to indicate how to display a string.

What is an Escape Sequence?

400

A combination of data and operators that evaluates to a single value.

What is an Expression?

400

Indicates that the variable does not refer to any object.

What is Null?

400

Gives the value stored in an instance variable.

What is an Accessor Method?

400

An operator used to compare values or expressions.

What is a Rational Operator?

400

An error caused by trying to divide by zero.

What is an Arithmetic Exception?

500

A basic data type that Java predefines.

What is a Primitive Type?

500

Exits a method and provides the value to where the method is called.

What is the Return keyword?

500

A constructor that has a specific number of arguments to be passed to assign values to an object's instance variables.

What is a Parameterized Constructor?

500

To improve the readability, readability, or structure of program code without altering its functionality.

What is to Refactor?

500

Giving a starting value to a variable using the assignment operator (=).

What is Initialization?