IndiaBIX
IndiaBIX
Start typing & press "Enter" or "ESC" to close
  • Home
  • Jobs
  • Results
  • Current Affairs
  • GK
  • Online Test
  • HR Interview
  • BLOG

Arrays - General Questions (2)

  • Home
  • Computer Science & Engineering
  • C# Programming Questions and Answers
  • Arrays - General Questions
9. 

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.

A. 1, 2
B. 1, 3, 5
C. 3, 4
D. 1, 2, 5
E. 4, 5

Answer: Option D

Explanation:

No answer description available for this question. Let us discuss.
View Answer Discuss Workspace Report

10. 

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
B. 4
C. 18
D. 10
E. 5

Answer: Option C

Explanation:

No answer description available for this question. Let us discuss.
View Answer Discuss Workspace Report

11. 

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

Explanation:

No answer description available for this question. Let us discuss.
View Answer Discuss Workspace Report

12. 

If a is an array of 5 integers then which of the following is the correct way to increase its size to 10 elements?

 

A. int[] a = new int[5]; int[] a = new int[10];
B. int[] a = int[5]; int[] a = int[10];
C. int[] a = new int[5]; a.Length = 10 ;
D. int[] a = new int[5]; a = new int[10];
E. int[] a = new int[5]; a.GetUpperBound(10);

Answer: Option D

Explanation:

No answer description available for this question. Let us discuss.
View Answer Discuss Workspace Report

13. 

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

Explanation:

No answer description available for this question. Let us discuss.
View Answer Discuss Workspace Report

14. 

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.

A. 1, 2
B. 2, 3, 4
C. 2, 3, 5
D. 4, 5
E. None of these

Answer: Option B

Explanation:

No answer description available for this question. Let us discuss.
View Answer Discuss Workspace Report

15. 

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

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

2 intMyArr represents rectangular array of 2 rows and 3 columns.

3 intMyArr.GetUpperBound(1) will yield 2.

4 intMyArr.Length will yield 24.

5 intMyArr.GetUpperBound(0) will yield 2.

A. 1, 2
B. 2, 3
C. 2, 5
D. 1, 4
E. 3, 4

Answer: Option A

Explanation:

No answer description available for this question. Let us discuss.
View Answer Discuss Workspace Report

  • 1
  • 2

Questions & Answers

Aptitude Chemical Engineering Civil Engineering Computer Science & Engineering Current Affairs Data Interpretation Electrical & Electronics Engineering Electronics & Communication Engineering General Knowledge Logical Reasoning Mechanical Engineering Non Verbal Reasoning Verbal Ability Verbal Reasoning

Interviews

HR Interview

Jobs

Sarkari Jobs

Results

Rojgar ResultSarkari Result

Admission

Admission 2023

Admit Card

Admit Card 2023

Answer Key

Answer Key 2023
copyright
Privacy Policy
© 2025 IndiaBIX. All Rights Reserved.

Report