| A | B |
| trigonometric | Math.sin,Math.cos,Math.tan all return this type of value |
| antilog | Math.exp(p) returns the ____ of argument p |
| Math.toDegrees(p) | This method returns the degrees of the radian value of p |
| pow | the method of the Math class that requires more than one parameter |
| class method call | requires that the class identifier precedes the method identifier. |
| class method | void, public, and static are all used frequently in the declaration of a _____ ______ |
| parameters | Most methods use these |
| method declaration | In a ____ ____ with multiple parameters the parameter types may be the same or they may be different. |
| method heading | public static void guess(double rate,double hours,int deduct) |
| method call | guess(2.8,2.6.3.002); |
| same | parameters in the method call and method heading must be the _____ quantity, sequence, and type. |
| void method | a method that uses the keyword void |
| return method | uses the keyword return and the data type declaration in the method heading. |
| void method call | the method call is the only part of a complete program statement |
| return method call | the method call provides a valu, shich is used in the program statement. |
| classes | with the use of 2 of these it is possible to place both of them in separate files or in the same file |
| Utility class | methods that are most often used like center, skip, and justify should be placed in here. |
| void and return | what type of methods are used in the utility class with or without parameters. |