Home / C# Programming / Arrays - C# :: Discussion

Discussion :: Arrays - C#

  1. Which of the following statements is correct about the C#.NET code snippet given below?

        int[] intMyArr = {11, 3, 5, 9, 4}; 

  2. 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.

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    No answer description available for this question.


Be The First To Comment