Computer Applications
Which of the following is the correct method to convert a String to a double in Java?
Java Library Classes
3 Likes
Answer
Double.parseDouble(String)
Reason — Double.parseDouble(String) method converts a String representation of a number into a primitive double.
Analysing other options:
String.toDouble()— Incorrect. This method does not exist in Java.Double.parseDouble()— Incorrect. This is syntactically incomplete, as it requires aStringargument.Double.valueOf(String)— Incorrect. This converts theStringto aDoubleobject, not a primitivedouble.
Answered By
3 Likes
Related Questions
The method to convert a String to double is:
- String.toDouble()
- Double.Parsedouble()
- Double.parseDouble(String)
- Double.parseDouble()
Differentiate between boxing and unboxing.
Assertion (A): Integer class can be used in the program without calling a package.
Reason (R): It belongs to the default package java.lang.
- Both Assertion (A) and Reason (R) are true and Reason (R) is a correct explanation of Assertion (A)
- Both Assertion (A) and Reason (R) are true and Reason (R) is not a correct explanation of Assertion(A)
- Assertion (A) is true and Reason (R) is false
- Assertion (A) is false and Reason (R) is true