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"); Console.Write(q.Peek());

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