Question 1  of   20

What is the output of the following code fragment? var array = new BitArray(new byte[] { 1 }); foreach (var bit in array) { Console.Write(Convert.ToInt16(bit)); }

A. False
B. True
C. 00000000
D. 0
E. 1