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

Discussion :: Arrays - C#

  1. How will you complete the foreach loop in the C#.NET code snippet given below such that it correctly prints all elements of the array a?

        int[][]a = new int[2][];  
        a[0] = new int[4]{6, 1 ,4, 3};  
        a[1] = new int[3]{9, 2, 7};    
        foreach (int[ ] i in a)     
        {        
           /* Add loop here */       
           Console.Write(j + " ");            
           Console.WriteLine();   
        }
    

     

  2. A.

    foreach (int j = 1; j

    B.

    foreach (int j = 1; j

    C.

    foreach (int j in a.Length)

    D.

    foreach (int j in i)

    E.

    foreach (int j in a.Length -1)

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    No answer description available for this question.


Be The First To Comment