Computer Science, asked by anshitatrivedi082, 7 days ago

Math.min(10, 23) + Math.pow(2, 3);​

Answers

Answered by naveenkumarpaswan07
1

Answer:

18

Explanation:

Math min mean return the smallest of the two arguments.

i.e. 10

Math pow mean return the value of the first arguments,raised to the Power of second arguments (2^3)i.e. 8

therefore 10+8=18

Answered by amitnrw
1

Given :   Math.min(10, 23) + Math.pow(2, 3);​

To Find : Evaluate

Solution:

Math.min(10, 23)  = 10     as  10 < 23

Math.pow(2, 3);​ = 8    as  2³  = 8

Math.min ( a , b)  =  a if a < b  or  b if  b < a

Math.pow (a , b)  = aᵇ

Math.min(10, 23) + Math.pow(2, 3);​

= 10  + 8

= 18

Hence  Math.min(10, 23) + Math.pow(2, 3) = 18

Learn More:

a) (1)Give answer using Excel formula/function on the following ...

brainly.in/question/13949918

gcd and LCM functions are a part of the more functions dropdown ...

brainly.in/question/10704774

Similar questions