C# Arrays and Strings Mcqs

Our collections of Multiple choice questions and answers focuses on study of C# Arrays and Strings. These topics are chosen from a collection of most authoritative and best reference books on C# Arrays and Strings. Our aim is to prepare an individual for competitive exams like NTS, GAT, ECAT, University and College entrance exams and various tests and job interviews. One should practice our mcqs to assimilate C# Arrays and Strings Topic comprehensively.

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

int[ , ] intMyArr = {{7, 1, 3}, {2, 9, 6}};
1. intMyArr represents rectangular array of 2 rows and 3 columns.
2. intMyArr.GetUpperBound(1) will yield 2.
3. intMyArr.Length will yield 24.
4. intMyArr represents 1-D array of 5 integers.
5. intMyArr.GetUpperBound(0) will yield 2.

1, 2

2, 3

2, 5

1, 4

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

int[] a = {11, 3, 5, 9, 4};
1. The array elements are created on the stack.
2. Refernce a is created on the stack.
3. The array elements are created on the heap.
4. 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.

1, 2

2, 3, 4

2, 3, 5

4, 5

3.
Which one of the following statements is correct?

Array elements can be of integer type only.

The rank of an Array is the total number of elements it can contain.

The length of an Array is the number of dimensions in the Array.

The default value of numeric array elements is zero.

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]; int[] a = new int[10];

Int[] a = int[5];
int[] a = int[10];

Int[] a = new int[5];
a.Length = 10;

Int[] a = new int[5],
a = new int[10],

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

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

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

Foreach (int j in a.Length)

Foreach (int j in i)

7.
Which of the following statements are correct about arrays used in C#.NET?

1. Arrays can be rectangular or jagged.
2. Rectangular arrays have similar rows stored in adjacent memory locations.
3. Jagged arrays do not have an access to the methods of System.Array Class.
4. Rectangular arrays do not have an access to the methods of System.Array Class.
5. Jagged arrays have dissimilar rows stored in non-adjacent memory locations.

1, 2

1, 3, 5

3, 4

1, 2, 5

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

IntMyArr is a reference to a 2-D jagged array.

The two rows of the jagged array intMyArr are stored in adjacent memory locations.

IntMyArr[0] refers to the zeroth 1-D array and intMyArr[1] refers to the first 1-D array.

IntMyArr refers to intMyArr[0] and intMyArr[1].

9.
Which of the following are the correct ways to define an array of 2 rows and 3 columns?

1.
int[ , ] a;
a = new int[2, 3]{{7, 1, 3},{2, 9, 6}};

2.
int[ , ] a;
a = new int[2, 3]{};

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

4.
int[ , ] a;
a = new int[1, 2];

5.
int[ , ] a;
a = new int[1, 2]{{7, 1, 3}, {2, 9, 6}};

1, 2 , 3

1, 3

2, 3

2, 4, 5

10.
Which of the following statements is correct about the array declaration given below?
 int[][][] intMyArr = new int[2][][];

IntMyArr refers to a 2-D jagged array containing 2 rows.

IntMyArr refers to a 2-D jagged array containing 3 rows.

IntMyArr refers to a 3-D jagged array containing 2 2-D jagged arrays.

IntMyArr refers to a 3-D jagged array containing three 2-D jagged arrays.

11.
Which of the following statements is correct about the C#.NET code snippet given below?
int[] intMyArr = {11, 3, 5, 9, 4};

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 System.Array Class.

IntMyArr is a reference to an array of integers.

IntMyArr is a reference to an object created on the stack.

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;
a = new int[3];
a[0] = 25;
a[1] = 30;
a[2] = 40;
a[3] = 5;

3.
int[] a;
a = new int{25, 30, 40, 5};

4.
int[] a;
a = new int[4]{25, 30, 40, 5};

5.
int[] a;
a = new int[4];
a[0] = 25;
a[1] = 30;
a[2] = 40;
a[3] = 5;

1, 2

3, 4

1, 4, 5

2, 4, 5

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

3

4

7

2

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. intMyArr.GetMax;
2. intMyArr.Highest(0);
3. intMyArr.GetUpperBound(0);
4. intMyArr.Length;
5. intMyArr.GetMaxElements(0);

1, 2

3, 4

3, 5

1, 5

15.
What will be the output of the C#.NET code snippet given below?

namespace CompScibitsConsoleApplication
{
    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 ] + " ");
                }
            }
        }
    }
}

0 0 34 34

0 0 17 17

0 0 0 0

17 17 0 0

0Shares
0
Scroll to Top