How do you determine if a queue implemented using a circular array is empty?
A. Check if the front and rear pointers are equal
B. Check if the front pointer is null
C. Check if the rear pointer is null
D. Check if the queue size is zero
Answer: Option A

Join The Discussion