Question: You have implemented a queue with a circular array keeping track of the first, the last, and the count (the number of items in the array). Suppose the first is zero, and the last is CAPACITY-1, what can you say about the count?
AThe count must be zero
BThe count must be CAPACITY
CThe count can be zero or CAPACITY, but no other value can occur
DNone of the above
Note: Not available