Question: 30
(Choose 1 answer)
Consider the following code. What is the output?
from queue import Queue
queue Queue()
queue.put(5)
queue.put(15)
while not queue.empty():
queue.get()
print(queue.empty())
A. true
B. false
C. O
D. An exception is thrown