Computer Science, asked by harshitnag876, 7 months ago

Int a[]={2,4,6,8,10};
a[0]=23;
a[3]=a[1];
int c=a[0]+a[1];
system.out.printIn("sum="+c);

Answers

Answered by BLANKBABA
1

Answer:

27

Explanation:

you overwrite a[0] with 23

so 23+4 is 27

brainliest pls I want ace

Similar questions