Computer Science, asked by bearmochi78, 8 months ago

int x=-10, y=81; System.out.println(Math.pow(Math.abs(x),2)*Math.sqrt(y));

PLEASE NO SPAM OR I'LL REPORT​

Answers

Answered by yusufyunus
1

Answer:

900 is the answers

Explanation:

we are printing the power of absolute value of -10 which is 10 to the power of 2, so

10^2 = 100

System.out.println(Math.pow(Math.abs(x),2)= 100

now we are multipling it with sqrt of 81 which is 9

so, we can write it as

System.out.println(100*Math.sqrt(y))

so 100*9

=900

Hopefully understandable ^-^

Similar questions