Computer Science, asked by bishtdiya16, 8 months ago

urgent plzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz

Attachments:

Answers

Answered by a321038
1

Answer:

math.sqrt((math.pow(a+b,3))/math.abs(a-b))

PLEASE MARK AS BRAINLIEST WITH SAYING THANKS

Answered by anindyaadhikari13
1

Question:-

Write the Java expression for the following.

Answer:-

Given expression,

 \sf \sqrt{ \frac{ {(a + b)}^{3} }{ |a - b| } }

The Java expression for the following will be,

Math.sqrt(Math.pow(a+b,3)/Math.abs(a-b))

Note:-

  1. Math.sqrt() is used to calculate square root of a number.
  2. Math.pow(x, y) is used to return x raised to the power y.
  3. Math.abs() is used to return the absolute value of the number i.e., the magnitude of the number irrespective of its sign.
Similar questions