| Term | Definition |
| methods | actions in a Java class |
| floor ceil round | Math classes that converts real numbers to integars |
| PI E | Math class featrues that do not use any paramerters or arguments |
| conditional statement | a program expression that evaluates to true or false |
| != | relational operator meaning "not equal to" |
| = | not a relational operator |
| if | java keyword used for one-way selection |
| if...else | java keywords used for two-way selection |
| fixed | for loop structure repetition |
| precondition | while loop structure repetition |
| postcondition | do...while loop structure repetition |
| conditional statement | control structures and repetition control structures both require_____ |
| class | data structure template or blue print |
| object | single instance of a given data structure template |
| class methods | Math methods and Util methods |
| object method | Band methods, Random methods, DecimalFormat methods |
| class method | called by the class identifier, followed by a period and method identifier |
| object method | called by an object identifier, followed by a period and the method identifier |
| objects | keyword new is used with_____ |
| class method | methods in the Math class |
| object method | methods in the Bank class |
| object method | methods in the Random class are |
| object method | methods in th DecimalFormat class are |
| constant | a class is a_____ |
| variable | an object is a_____ |
| new | keyword needed with the construction of each object |