Vidyalelo
C# Programming · Q113

Arrays and Strings in C Sharp

Programming · C# Programming · question 113

Q113

Which statement is correct about following c#.NET code? int[] a= 11, 3, 5, 9, 6;

A.
'a' is a reference to the array created on stack
B.
'a' is a reference to an object created on stack
C.
'a' is a reference to an object of a class that compiler drives from 'System.Array' class
Answer
D.
None of the mentioned

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board