ICSE Class 10 Computer Applications
Question 6 of 14
Mathematical Library Methods — Question 6
Back to all questions 6
Question Question 6
Write the following as Java expressions:
i.
Math.cbrt(x * x + 5 * y * y * y)
ii.
Math.abs(x + y)
iii.
Math.abs(Math.pow(x, 3) + Math.pow(y, 2) - 2*x*y)
iv.
Math.PI / 6*(Math.pow(z, 4) - 2*Math.PI)
v.
Math.cbrt(z*z - Math.PI)
vi.
Math.pow(x*x*x - y*y*y, 1/4)
vii.
(amount*rate) / (1 - (1 / Math.pow(1+rate, n)))
viii.
(-b + Math.sqrt(b*b - 4*a*c)) / (2*a)
ix.
Math.pow((1 / L*C) - ((R*R)/(4*C*C)), 1/4)