How can you determine if a queue is full when using a fixed-size array implementation?
A. By checking if the rear pointer is at the maximum capacity
B. By checking if the front pointer is equal to the rear pointer
C. By checking if the size equals the array size
D. By checking if the array is null
Answer: Option C

Join The Discussion