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

Discussion :: Arrays - C#

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

        int[ , , ] a = new int[ 3, 2, 3 ];      
        Console.WriteLine(a.Length);

     

  2. A.

    20

    B.

    4

    C.

    18

    D.

    10

    E.

    5

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    No answer description available for this question.


Be The First To Comment