Computer Science, asked by shubhajoshi349, 2 months ago

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

Answers

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

Answered by jaswasri2006
0

math. min (10,23)+math. pow(2,3) ;- 18

Similar questions