

MCQOPTIONS
Saved Bookmarks
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. |
E. | intMyArr is a reference to the array created on the stack. |
Answer» C. intMyArr is a reference to an array of integers. | |