Select from following answers:- float[] f= new float[3]{new float[] {43.54,54.43}};
- int[][] scores = new int[2][]{new int[]{92,93,94},new int[]{85,66,87,88}};
- float[] f= new float[3][]{new float[2][] {43.54,54.43}};
- int[] scores = new int[2]{new int[][2]{92,93,94},new int[]{85,66,87,88}};
- All Above
This is correct format for declaring a jagged array
Show Correct Answer
Asked In: Many Interviews |
Alert Moderator