Discussion :: Collection Classes
-
Which of the following is the correct way to access all elements of the Queue collection created using the C#.NET code snippet given below?
Queue q = new Queue(); q.Enqueue("Sachin"); q.Enqueue('A'); q.Enqueue(false); q.Enqueue(38); q.Enqueue(5.4);
A.
|
B.
|
C.
|
D.
|
Answer : Option A
Explanation :
No answer description available for this question.
Be The First To Comment