Which code segment should you use? seenagape 13 years ago You need to create a method to clear a Queue named q. Which code segment should you use? A.foreach (object e in q) { q.Dequeue(); } B.foreach (object e in q) { Enqueue(null); } C.q.Clear(); D.q.Dequeue(); ← Previous question Next question →