C# Programming - Arrays
Exercise : Arrays - General Questions
- Arrays - General Questions
6.
Which of the following is the correct output of the C#.NET code snippet given below?
int[ , , ] a = new int[ 3, 2, 3 ];
Console.WriteLine(a.Length);
7.
Which of the following statements are correct about arrays used in C#.NET?
- Arrays can be rectangular or jagged.
- Rectangular arrays have similar rows stored in adjacent memory locations.
- Jagged arrays do not have an access to the methods of System.Array Class.
- Rectangular arrays do not have an access to the methods of System.Array Class.
- Jagged arrays have dissimilar rows stored in non-adjacent memory locations.
8.
Which of the following statements are correct about the C#.NET code snippet given below?
int[][]intMyArr = new int[2][];
intMyArr[0] = new int[4]{6, 1, 4, 3};
intMyArr[1] = new int[3]{9, 2, 7};
9.
Which of the following are the correct ways to define an array of 2 rows and 3 columns?
-
int[ , ] a; a = new int[2, 3]{{7, 1, 3},{2, 9, 6}};
-
int[ , ] a; a = new int[2, 3]{};
-
int[ , ] a = {{7, 1, 3}, {2, 9,6 }};
-
int[ , ] a; a = new int[1, 2];
-
int[ , ] a; a = new int[1, 2]{{7, 1, 3}, {2, 9, 6}};
10.
Which of the following statements is correct about the array declaration given below?
int[][][] intMyArr = new int[2][][];
Quick links
Quantitative Aptitude
Verbal (English)
Reasoning
Programming
Interview
Placement Papers