Which of the below is correct format of Jagged array?

 Posted by Manicse on 9/27/2016 | Category: C# Interview questions | Views: 5472 | Points: 40
Select from following answers:
  1. float[] f= new float[3]{new float[] {43.54,54.43}};
  2. int[][] scores = new int[2][]{new int[]{92,93,94},new int[]{85,66,87,88}};
  3. float[] f= new float[3][]{new float[2][] {43.54,54.43}};
  4. int[] scores = new int[2]{new int[][2]{92,93,94},new int[]{85,66,87,88}};
  5. All Above

Show Correct Answer


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response

More Interview Questions by Manicse