Question 1  of   20

What is the output of the following code snippet? var q = new Queue(); q.Enqueue("A"); q.Enqueue("B"); q.Enqueue("C"); q.Enqueue("D"); //... q.Dequeue(); foreach (string value in q) { Console.Write(value); }

A. ABC
B. [Blank output]
C. BCD
D. ABCD