Question: In a circular queue, what condition indicates that the queue is full?
Options:
Correct Answer: rear == (front + 1) % size
Solution:
In a circular queue, the condition rear == (front + 1) % size indicates that the queue is full, as it means there is no space left for new elements.