Computer Science, asked by naziagaur, 2 months ago

(a) int a[]={5,25,3,125,64}
What will following statement return
(1) a.length
(2) Math.cbrt(a[4]+a[2]​

Answers

Answered by himanshu2006vps
0

Answer:

1)4 ( because length of array starts from 0)

2)4.06( steps Math.cbrt((64)+(3))= Math.cbrt(67)

Similar questions