Which statement is correct about following c#.NET code?
int[] a= {11, 3, 5, 9, 6};
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
D. None of the mentioned
Answer: Option C
Join The Discussion