2.10 Using Math Methods

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