

MCQOPTIONS
Saved Bookmarks
1. |
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 |
A. | 2, 3, 4 |
B. | 1, 2 |
C. | 4, 5 |
D. | 2, 3, 5 |
Answer» B. 1, 2 | |