Across
- 1. Math._____; a Math method that takes the absolute value of x
- 3. What is y? y = Math.pow(2.0, 8.0);
- 5. This class has about 30 math operations, known as methods, and is part of Java's standard language package with no import needed.
- 6. This calls the Math class method, preceding the method name (ex: ____pow(num1, 2);)
- 7. Math._____; a Math method that takes the square root of x
- 8. Math.____; a Math method that needs 2 arguments to put the first number (first arg) to a power (second arg)
Down
- 1. Method input values appearing within (), separated by commas if multiple
- 2. What is y? y = Math.sqrt(81.0);
- 3. z = Math.pow(2.0, Math.pow(2.0, 3.0));
- 4. Math.sqrt(36.0); evaluates to _____ .
- 6. List of statements executed by invoking the method's name known as the method call
