- A 1 2 3
- B 3 2 1
- C 2 1
- D Error
Array in java Array Introduction in Data Structure
⚠ Report ✓ Question Verified Copy Link
int[] a = {1, 2, 3}; for (int i = a.length - 1; i >= 0; i--) { System.out.print(a[i] + " "); }
Learn More MCQ Questions from Array in java Array Introduction in Data Structure