1.

Please answer to these questions...Please give an equivalent answer. If you don't know the answer then please do not answer... No worthless answers expected nor required... please answer fast...​

Answer»

\huge\star\underbrace{\mathtt\orange{⫷❥QuEsTiOn:-⫸}}\star

Java expression for the following Expression:-

  1. \sqrt{a + b}
  2. \frac{1}{3}  {a}^{3}  +  \frac{1}{<klux>4</klux>}  {b}^{3}
  3. s = ut +  \frac{1}{2} f{t}^{2}
  4. d =  \sqrt{ {l}^{2}  +  {b}^{2} }
  5. \frac{ - b +  \sqrt{ {b}^{2} - 4a } }{2a}
  6. \frac{{a}^{3}  +  {b}^{3} }{{a}^{3}   -   {b}^{3} }
  7. | \frac{a + b}{a - b} |
  8. 3\sqrt{ \frac{a + b}{ab} }
  9. \frac{ \sqrt[3]{<klux>5</klux> {x}^{2}  + y} }{ \sqrt[4]{x + 11 {y}^{3} } }
  10. \frac{x + y}{ \sqrt{ |x - y| } }

\huge\star\underbrace{\mathtt\red{⫷❥ᴀ᭄} \mathtt\green{n~ }\mathtt\blue{ §} \mathtt\purple{₩}\mathtt\orange{Σ} \mathtt\pink{R⫸}}\star

  1. Math.sqrt(a+b)
  2. 1/3*Math.pow(a, 3) +1/4*Math.pow(b, 3)
  3. s=u*t+1/2*f*Math.pow(t, 2) ;
  4. d=Math.sqrt(Math.pow(l, 2) +Math.pow(b, 2) ;
  5. (-b+Math.sqrt(Math.pow(b, 2)- (4*a)))/(2*a) ;
  6. (Math.pow(a,3) +Math.pow(b,3))/(Math.pow(a,3)-Math.pow(b,3))
  7. Math.abs((a-b) /(a+b) )
  8. 3*Math.sqrt((a+b) /(a*b) )
  9. Math.cbrt((5*Math.pow(x, 2)) +y) / Math.pow((x+11*Math.pow(y, 3)), 1/4.0)
  10. (x+y) /(Math.sqrt(Math.abs(x-y)))

----------------------------------------

Note:-

  1. Math.sqrt() is used for finding square root
  2. Math.pow() is used for a number rased to power x {(n}^{2)}
  3. Math.sqrt() for finding square root
  4. Math.cbrt() for finding cube root
  5. Math.abs() for finding absolute value of a number

-----------------------------------------

More Math FUNCTIONS:-

  1. Math.min()
  2. Math.max()
  3. Math.exp()
  4. Math.ceil()
  5. Math.floor()
  6. Math.rint().... etc.


Discussion

No Comment Found