Computer Science, asked by kars9194, 6 months ago

write the java expression of square root of 1234​

Answers

Answered by anindyaadhikari13
2

Question:-

Write the java expression of the square root of 1234.

Answer:-

The java expression of the square root of 1234 is

Math.sqrt(1234);

Note:- Math.sqrt(x) is used to find the square root of x. It always returns the value of double data type.

Similar questions