πŸ“Š JAVA
Q. Determine output:
public class Test{
public static void main(String[] args){
int[] x = {1, 2, 3, 4};
int[] y = x;

x = new int[2];

for(int i = 0; i < x.length; i++)
System.out.print(y[i] + " ");
}
}
  • (A) 1 2 3 4
  • (B) 0 0 0 0
  • (C) 1 2
  • (D) 1 2 D. 0 0
πŸ’¬ Discuss
βœ… Correct Answer: (C) 1 2

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
70
Total Visits
πŸ“½οΈ
12 mo ago
Published
πŸŽ–οΈ
Bhagwan Das
Publisher
πŸ“ˆ
92%
Success Rate