Applet
|
A program that runs on a web page.
|
appletviewer
|
A tool included in the JDK that's supported in NetBeans, which will test applets.
|
Application
|
A program that runs locally, on your own computer.
|
Argument
|
Extra information sent to a program.
|
Argument Storage
|
An Array.
|
Array
|
A group of related variables that share the same type and are being arranged.
|
Attribute
|
The information that describe the object and show how it is different than other objects.
|
Attributes and Behaviors
|
An object contains these two things.
|
Autoboxing
|
Casts a simple variable value to the corresponding class.
|
Behavior
|
What an object does.
|
Boolean Values
|
Type of variable that cannot be used in any Casting.
|
Casting
|
Converting information from one form to another.
|
char
|
Any character. Surrounded by single quotation marks.
|
Class
|
A master copy of the object that determines the attributes and behavior an object should have.
|
Class Statement
|
The way you give your computer program a name.
|
Comma
|
Used to separate things within a section.
|
Concatenating
|
Joining one string to another string. Also known as pasting.
|
Constants
|
Variables that do not change in value; typed in all-caps.
|
Destination
|
The converted version of the source in a new form.
|
Differences in String
|
S is Capitalized. Type of Object.
|
Do While Execution
|
This loop will always execute at least once, even if the conditions are not met.
|
Do While Loop
|
Tests the condition at the end of each repetition of a section of a program.
|
Double "
|
Quotation type used for string values.
|
Element
|
An item in an Array.
|
Engaging in OOP
|
Breaking down computer programs in the same way a pie chart is broken down.
|
For Loop
|
Repeats a section of a program a fixed amount of times.
|
Inheritance
|
Enables one object to inherit behavior and attributes from another object.
|
Iteration
|
A single trip through a loop.
|
Iterator
|
The counter variable used to control a loop.
|
Loop
|
This causes a computer program to return to the same place more than once.
|
main()
|
Block statement statement in which all of the program's work gets done.
|
Method
|
A group of Attributes and Behaviors.
|
Method
|
A way to accomplish a task in a Java program.
|
Methods
|
Part of an Object's behavior.
|
Multi-thread
|
A way for the computer to do more than one thing at the same time.
|
Object
|
A way of organizing a program so that it has everything it needs to accomplish a task.
|
Objects
|
Programs that you create. These can be thought of as physical items that exist in the real world.
|
OOP Program
|
A group of objects that work together to get something done.
|
Platform Independent
|
A program that does not have to be written for a specific operating system.
|
Programs
|
A class that can be used as a template for the creation of new objects.
|
Public int
|
Makes it possible to modify the variable from another program that is using the object.
|
Reason Brackets are missing
|
Not required for single statement IF statements or Loops.
|
Semicolon
|
Used to separate sections.
|
Single '
|
Quotation type used for character values.
|
Source
|
Information in it's original form.
|
Statement
|
An instruction you give a computer.
|
String
|
A collection of characters. Surrounded by double quotation marks.
|
String
|
A line of text that can include letters, numbers, punctuation, and other characters.
|
Subclass
|
A class that inherits from another class.
|
Superclass
|
A class that is inherited from.
|
Ternary Operator
|
Used to assign a value or display a value based on a condition.
|
Thread
|
Each part of a program which takes care of a different task.
|
Three types of Loops
|
For, While, and Do-While.
|
Unboxing
|
Casts an object to the corresponding simple value.
|
Variable
|
A storage place that can hold information, which may change.
|
While Loop
|
Tests the condition at the beginning of each repetition of a section of a program.
|
Expressions
|
Statements that involve a mathematical equation and produce a result.
|
println
|
Starts a new line after displaying the text.
|