C# Programming - Arrays
Exercise : Arrays - General Questions
- Arrays - General Questions
11.
Which of the following statements is correct about the C#.NET code snippet given below?
int[] intMyArr = {11, 3, 5, 9, 4};
12.
Which of the following is the correct way to define and initialise an array of 4 integers?
-
int[] a = {25, 30, 40, 5};
-
int[] a; a = new int[3]; a[0] = 25; a[1] = 30; a[2] = 40; a[3] = 5;
-
int[] a; a = new int{25, 30, 40, 5};
-
int[] a; a = new int[4]{25, 30, 40, 5};
-
int[] a; a = new int[4]; a[0] = 25; a[1] = 30; a[2] = 40; a[3] = 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));
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};
- intMyArr.GetMax;
- intMyArr.Highest(0);
- intMyArr.GetUpperBound(0);
- intMyArr.Length;
- intMyArr.GetMaxElements(0);
Answer: Option
Explanation:
using System;
public class Test
{
public static void Main()
{
int[] intMyArr = { 25, 30, 45, 15, 60, 78, 99 };
Console.WriteLine(intMyArr.Length);
Console.WriteLine(intMyArr.GetUpperBound(0)+1);
}
}
/*
Output :
7
7
*/
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 ] + " ");
}
}
}
}
}
Quick links
Quantitative Aptitude
Verbal (English)
Reasoning
Programming
Interview
Placement Papers