An executable Java component that executes in a Web browser or in any environment that supports the applet programming model is a(n) _____. 
applet
An Application Programming Interface (API) is the specification that defines how the programmer can access the methods and variables of a set of classes is a(n) _____. 
API
_____ or American Standard Code for Information Interchange is a standard coding of 7-bit numeric codes to characters.
ASCII
A(n) _____ is a set of data items of a single type in which item position is designated by an integer from zero to n. 
array
A(n) _____ is a sequence of eight bits. 
byte
_____ refers to an expression that must evaluate to a value of true or false. 
boolean
Any code within a set of matching braces is a(n) _____.
block
A(n) _____ is a program which translates source code into code to be executed by a computer. 
compiler
In the Java language, _____ are instance methods with the same name as their class. 
constructors
A(n) _____is a statement that establishes an identifier and associates attributes with it, without, necessarily, reserving its storage (for data) or providing the implementation (for methods).
declaration
A(n) _____ is an event during program execution that prevents the program from continuing normally, usually due to an error. 
exception
_____ is the Java language keyword that defines an entity which cannot be changed or derived from later. 
final
In Java language programs, an _____ of a class is created using the new operator followed by the class name. 
instance
Al Gore says he created the _____.
internet
The Java language reserves certain words as _____ which are, therefore, not available as names for variables or methods. 
keywords
A function defined in a class is a(n) _____. 
method
A Java language keyword that creates an instance of a specified class is ____.
new
_____ is a Java language keyword used in a method or variable declaration to signify that the method or variable can only be accessed by other elements of its class. 
private
A Java language keyword used to finish the execution of a method is ____. 
return
public _____ void main(String [] args)
static