Term
the code to import all of the classes in the package packagename (give the code) |
|
Definition
|
|
Term
the code to import the single class ClassName from the package packagename (give the code) |
|
Definition
|
import packagename.ClassName;
|
|
|
Term
the code to import the single class ClassName from the package packagename under the subpackage subpackagename (give the code) |
|
Definition
import packagename.subpackagename.ClassName;
|
|
|
Term
A Java program must have at least ___ class, the one that contains the ___ _____. (fill in the blanks) |
|
Definition
|
|
Term
A _________ converts source code into machine-readable form called ________. (fill in the blanks)
|
|
Definition
|
|
Term
All Java methods must be contained in a _____, and all program statements must be placed inside a ______. (fill in the blanks)
|
|
Definition
|
|
Term
Typically, the class that contains the ____ method does not contain many additional methods. (fill in the blanks)
|
|
Definition
|
|
Term
The words class, public, static, void, and main are ________ _____, also called ________. (fill in the blanks)
|
|
Definition
|
|
Term
|
Definition
|
|