☑Kizspy.me
Answer (Choose 1 answer)
☐ A
Back
Next
What will be the output of the following code?
from queue import LifoQueue
S=LifoQueue(maxsize=3)
S.put('A')
S.put('B')
S.put('C')
print(S.get())
A. ['A', 'B', 'C']
B. ['C', 'B', 'A']
C. A
D. C
FUQ.sh
sh the exam.