Which Statement Is Correct About Following Cnet Codep Preint A #221
Which statement is correct about following c#.NET code?</p> <pre><code class="language-text">int[] a= {11, 3, 5, 9, 6};</code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs108 CSharp. It can also be found in gs gs108 Arrays and Strings - Array and Initialization - Quiz No.1.
Which statement is correct about following c#.NET code?
int[] a= {11, 3, 5, 9, 6};
'a' is a reference to the array created on stack
'a' is a reference to an object created on stack
'a' is a reference to an object of a class that compiler drives from 'System.Array' class
None of the mentioned