Edit Game
Chap - 6 Revision
 Delete

Use commas to add multiple tags

 Private  Unlisted  Public




Delimiter between question and answer:

Tips:

  • No column headers.
  • Each line maps to a question.
  • If the delimiter is used in a question, the question should be surrounded by double quotes: "My, question","My, answer"
  • The first answer in the multiple choice question must be the correct answer.






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