Home >> Flashcards >> Computer Science >> APCS Finals Study 9-1
|
Details
Title: APCS Finals Study 9-1
Description: BARRON'S AP Computer Science Levels A and AB
Total Flash Cards: 9
Created: 01/04/2009 21:20:09
|
|
New Users: To study from this flashcard set, or to create your own your own study flash cards, REGISTER HERE.
Existing Users: CLICK HERE.
Additional Computer Science Flashcards
|
Cards in this set:
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
|
|