Question: You have implemented a queue with a circular array keeping track of the first item, the last item, and the count (the number of items in the array). Suppose the address of the first is zero, and that of the last is CAPACITY-1, what can you say about the count?
A
B
C
D
The count must be zero
B
The count must be CAPACITY
C
The count can be zero or CAPACITY, but no other value can occur
D
None of the above
Note: Not available