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

Discussion :: Arrays - C#

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

        int[][]intMyArr = new int[2][]; 
        intMyArr[0] = new int[4]{6, 1, 4, 3};     
        intMyArr[1] = new int[3]{9, 2, 7};
    

  2. A.

    intMyArr is a reference to a 2-D jagged array.

    B.

    The two rows of the jagged array intMyArr are stored in adjacent memory locations.

    C.

    intMyArr[0] refers to the zeroth 1-D array and intMyArr[1] refers to the first 1-D array.

    D.

    intMyArr refers to intMyArr[0] and intMyArr[1].

    E.

    intMyArr refers to intMyArr[1] and intMyArr[2].

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    No answer description available for this question.


Be The First To Comment