You are on page 1of 5

Which of the following statements are correct about the C#.NET code snippet given below?

int[ , ] intMyArr = {{7, 1, 3}, {2, 9, 6}};

1.
2.
3.
4.
5.

intMyArr represents rectangular array of 2 rows and 3 columns.


intMyArr.GetUpperBound(1) will yield 2.
intMyArr.Length will yield 24.
intMyArr represents 1-D array of 5 integers.
intMyArr.GetUpperBound(0) will yield 2.

A.1, 2
B. 2, 3
C. 2, 5
D.1, 4
E. 3, 4
Answer: Option A
2. Which of the following statements are correct about the C#.NET code snippet given
below?
int[] a = {11, 3, 5, 9, 4};

1.
2.
3.
4.

The array elements are created on the stack.


Refernce a is created on the stack.
The array elements are created on the heap.
On declaring the array a new array class is created which is derived from
System.Array Class.
5. Whether the array elements are stored in the stack or heap depends upon the size of
the array.
A.1, 2
B. 2, 3, 4
C. 2, 3, 5
D.4, 5
E. None of these
Answer: Option B
3. Which one of the following statements is correct?
A.Array elements can be of integer type only.
B. The rank of an Array is the total number of elements it can contain.
C. The length of an Array is the number of dimensions in the Array.
D.The default value of numeric array elements is zero.
E. The Array elements are guaranteed to be sorted.
Answer: Option D
4. If a is an array of 5 integers then which of the following is the correct way to increase its
size to 10 elements?

int[] a = new int[5];

A.int[] a = new int[10];


int[] a = int[5];

B. int[] a = int[10];
int[] a = new int[5];

C. a.Length = 10 ;
int[] a = new int[5];
D.a = new int[10];
int[] a = new int[5];

E. a.GetUpperBound(10);
Answer: Option D

5. How will you complete the foreach loop in the C#.NET code snippet given below such that
it correctly prints all elements of the array a?
int[][]a = new int[2][];
a[0] = new int[4]{6, 1 ,4, 3};
a[1] = new int[3]{9, 2, 7};
foreach (int[ ] i in a)
{
/* Add loop here */
Console.Write(j + " ");
Console.WriteLine();
}

A.foreach (int j = 1; j < a(0).GetUpperBound; j++)


B. foreach (int j = 1; j < a.GetUpperBound (0); j++)
C. foreach (int j in a.Length)
D.foreach (int j in i)
E. foreach (int j in a.Length -1)
Answer: Option D
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);

A.20
C. 18
E. 5

B. 4
D.10

Answer: Option C
7. Which of the following statements are correct about arrays used in C#.NET?
1.
2.
3.
4.
5.
A.1, 2

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.

B. 1, 3, 5
C. 3, 4
D.1, 2, 5
E. 4, 5
Answer: Option D
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};

A.intMyArr is a reference to a 2-D jagged array.


B. The two rows of the jagged array intMyArr are stored in adjacent memory locations.
C. intMyArr[0] refers to the zeroth 1-D array and intMyArr[1] refers to the first 1-D array.
D.intMyArr refers to intMyArr[0] and intMyArr[1].
E. intMyArr refers to intMyArr[1] and intMyArr[2].
Answer: Option C
9. Which of the following are the correct ways to define an array of 2 rows and 3 columns?
1.
2.
3.
4.
5.
6.
7.
8.
9.

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}};

A.1, 2 , 3
B. 1, 3
C. 2, 3
D.2, 4, 5
E. 4, 5
Answer: Option B
10. Which of the following statements is correct about the array declaration given below?
int[][][] intMyArr = new int[2][][];

A.intMyArr refers to a 2-D jagged array containing 2 rows.


B. intMyArr refers to a 2-D jagged array containing 3 rows.
C. intMyArr refers to a 3-D jagged array containing 2 2-D jagged arrays.
D.intMyArr refers to a 3-D jagged array containing three 2-D jagged arrays.
E. intMyArr refers to a 3-D jagged array containing 2 2-D rectangular arrays.
Answer: Option C
11. Which of the following statements is correct about the C#.NET code snippet given

below?
int[] intMyArr = {11, 3, 5, 9, 4};

A.intMyArr is a reference to an object of System.Array Class.


intMyArr is a reference to an object of a class that the compiler derives from
B.
System.Array Class.
C. intMyArr is a reference to an array of integers.
D.intMyArr is a reference to an object created on the stack.
E. intMyArr is a reference to the array created on the stack.
Answer: Option B
12. Which of the following is the correct way to define and initialise an array of 4
integers?
1. int[] a = {25, 30, 40, 5};
2. int[] a;
3. a = new int[3];
4. a[0] = 25;
5. a[1] = 30;
6. a[2] = 40;
7. a[3] = 5;
8. int[] a;
9. a = new int{25, 30, 40, 5};
10. int[] a;
11. a = new int[4]{25, 30, 40, 5};
12. int[] a;
13. a = new int[4];
14. a[0] = 25;
15. a[1] = 30;
16. a[2] = 40;
17. a[3] = 5;

A.1, 2
B. 3, 4
C. 1, 4, 5
D.2, 4, 5
E. 5, 5
Answer: Option C
13. Which of the following is the correct output of the C#.NET code snippet given
below?
int[][] a = new int[2][];
a[0] = new int[4]{6, 1, 4, 3};
a[1] = new int[3]{9, 2, 7};
Console.WriteLine(a[1].GetUpperBound(0));

A.3
C. 7
E. 2

B. 4
D.9

Answer: Option E
14. Which of the following is the correct way to obtain the number of elements present in

the array given below?


int[] intMyArr = {25, 30, 45, 15, 60};

1.
2.
3.
4.
5.

intMyArr.GetMax;
intMyArr.Highest(0);
intMyArr.GetUpperBound(0);
intMyArr.Length;
intMyArr.GetMaxElements(0);

A.1, 2
B. 3, 4
C. 3, 5
D.1, 5
E. 4, 5
Answer: Option B
15. What will be the output of the C#.NET code snippet given below?
namespace IndiabixConsoleApplication
{
class SampleProgram
{
static void Main(string[ ] args)
{
int i, j;
int[ , ] arr = new int[ 2, 2 ];
for(i = 0; i < 2; ++i)
{
for(j = 0; j < 2; ++j)
{
arr[i, j] = i * 17 + i * 17;
Console.Write(arr[ i, j ] + " ");
}
}
}
}
}

A.0 0 34 34
B. 0 0 17 17
C. 0 0 0 0
D.17 17 0 0
E. 34 34 0 0
Answer: Option A

You might also like