Question:You need to create a method to clear a Queue named q. Which code segment should youuse? - (VB.Net)
A For Each e As Object In qDequeue()Next B For Each e As Object In qEnqueue(Nothing)Next C q.Clear() D q.Dequeue()
+ AnswerC
+ Report