Study

Chap - 6 Revision

  •   0%
  •  0     0     0

  • Give output of Math.min(-12,16)
    -16
  • Which function is use to find square of a number?
    Math.pow(a,2)
  • Give output of Math.round(-18.4)
    -18
  • Which function is used to find exponent of a number
    Math.pow( )
  • State True or False : - We can find Cube root of negative.
    TRUE
  • Give output of Math.abs(-8)
    8
  • Give output of Math.sqrt(-25)
    NaN
  • Give syntax for round off of variable d
    Math.round(d)
  • Which function is used to find round off of a number?
    Math.round( );
  • Give output of Math.sqrt(x) for x = 9.0
    3.0
  • State True or False : we can find Natural Logarithm of a negative number.
    False
  • Name the package include all Mathematical Function
    import java.math.*