Computer Science, asked by manik8652, 1 year ago

2. int a[ ] ={2,4,6,8,10};a[0]=23;a[3]=a[1];int c= a[0]+a[1];System.out.println("Sum = "+c):​

Answers

Answered by rishabhbaptish
0

Answer:

27 will be the sum

Explanation:

As a[0] will become 23 and a[1] remains 4

Similar questions