adplus-dvertising
frame-decoration

Question

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

Answer: (b).2, 3, 4

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. 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....

Similar Questions

Discover Related MCQs

Q. Which one of the following statements is correct?

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

Q. Which of the following statements will correctly copy the contents of one string into another ?

Q. The string built using the String class are immutable (unchangeable), whereas, the ones built- using the StringBuilder class are mutable.

Q. If s1 and s2 are references to two strings, then which of the following is the correct way to compare the two references?

Q. Which of the following statements about a String is correct?

Q. Which of the following statement is correct about a String in C#.NET?

Q. Which of the following is the correct way to find out the index of the second 's' in the string "She sells sea shells on the sea-shore"?

Q. Which statement is correct about following c#.NET code ?

int[] a= {11, 3, 5, 9, 6};

Q. What is the advantage of using 2D jagged array over 2D rectangular array?

Q. Which statement is correct about following set of code ?

int[, ]a={{5, 4, 3},{9, 2, 6}};

Q. Which is the correct way of defining and initializing an array of 3 integers?

Q. Choose selective differences between an array in c# and array in other programming languages.

Q. Which of the following string() method are used to compare two strings with each other?

Q. Choose the base class for string() method :

Q. Which of the following statement is correct about a string in C#.NET?

Q. Correct way to find if contents of two strings are equal ?

Q. Which of the following statements are correct ?

Q. Which of these operators can be used to concatenate two or more String objects?

Q. The Method use to remove white space from string?