Computer Science, asked by anirudhchhatwa4618, 9 months ago

If int n[ ] ={1, 2, 3, 5, 7, 9, 13, 16}what arethe values of x and y? Where x= Math.pow(n[4], n[2]) and y= Math. sqrt ( n[5] + n [7])​

Answers

Answered by dsaha201171
4

Answer:

here x = 7 to the power 3 = 343

y = \sqrt{9 + 16} =  \sqrt{25} = 5

Explanation:

the index of array starts from 0. So n[4] = 7, n[2]= 3 , n[5] = 9, n[7] = 16

Similar questions