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

11 Likes

Answer

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

Answered By

4 Likes


Related Questions