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. 320
B. 314
C. 312
D. 321
E. 313