Advertisements
Advertisements
Question
Give the output of the following program snippet:
int a[] = new int [5];
a[0] = 4; a[1] = 8; a[2] = 7; a[3] = 12; a[4] = 3;
System.out.println(a[2 + 1]);
One Word/Term Answer
Solution
12
shaalaa.com
Is there an error in this question or solution?