Computer Applications

Write the Java expression to find the product of square root of P and the square root of Q using the methods of Math class.

Java Math Lib Methods

9 Likes

Answer

Math.sqrt(P) * Math.sqrt(Q)

Answered By

3 Likes


Related Questions