1.

Which of the following statements is correct about the C#.NET code snippet given below? int[] intMyArr = {11, 3, 5, 9, 4};

A. IntMyArr is a reference to an object of System.Array Class.
B. IntMyArr is a reference to an object of a class that the compiler derives from System.Array Class.
C. IntMyArr is a reference to an array of integers.
D. IntMyArr is a reference to an object created on the stack.
Answer» C. IntMyArr is a reference to an array of integers.


Discussion

No Comment Found