Question 1  of   20

What is the output of the following code fragment? string[][] a = new string[][] { new string[] {"α","ß","γ"}, new string[] {"α","ß"}, new string[] {} }; for (int i = 0; i < a.Length; i++) { Console.Write(a[i].Length); }

A. 312
B. 320
C. 313
D. 321
E. 314