If a=[5,4,3,2,1,0] evaluate the following expressions: a[a[0]] *
Answers
Answered by
7
Answer:
0
Explanation:
a[0] is 5
a[a[0]] = a[5]
i.e. the 6th item of the array which is the number 0
a=[5,4,3,2,1,0]
Answered by
2
Answer:
answer is 0
Explanation:
First the value of a[0] will be executed which is 5
and then the outer part a[5] which is 0
Similar questions