ICSE Class 10 Computer Applications Question 24 of 30

Solved 2025 Specimen Paper ICSE Class 10 Computer Applications — Question 24

Back to all questions
24
Question

Question 2(iv)

Write the Java expression for x3+y\sqrt[3]{x}+ \sqrt{y}

Answer

The Java expression for the given mathematical expression can be written as:

Math.cbrt(x) + Math.sqrt(y);