AMU 2026 — Computer PYQ
AMU | Computer | 2026What will be the output of the following program?
public class Solution {
public static void main(String[] args) {
int[] x = {120, 200, 016};
for (int i = 0; i < x.length; i++) {
System.out.print(x[i] + " ");
}
}
}
