Home / Questions / (i) 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.
Explanatory Question

(i) 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.

👁 64 Views
📘 Detailed Answer
🕒 Easy to Read
Read the answer carefully and go through the related questions on the right side to improve your understanding of this topic.

Answer with Explanation


double result = Math.sqrt(P) * Math.sqrt(Q);