Question: What is the primary advantage of using a circular queue over a linear queue?
Options:
Correct Answer: No wasted space
Solution:
A circular queue eliminates wasted space by reusing the empty slots created when elements are dequeued, making it more efficient in terms of space.