Computer Applications
Which of the following functions will find the square root of a number 'a'?
- sqrt(a)
- Math.sqrt(a)
- Squareroot(a)
- √a
Related Questions
Which of the following does not find the square of a number?
- Math.pow(a,2)
- a*a
- Math.sqrt(a,2)
- a**2
What type of value is returned by Math.sqrt( )?
- int
- float
- double
- long
Which of the following package will you import to use Scanner class?
- java_util;
- Scanner.class;
- java.util;
- java.scanner.util;
Fill in the blanks:
A class of JDK 1.5 version used to accept the values from the keyboard is known as _________.