In implementing a queue with a circular array, what is the purpose of keeping track of "first," "last," and "count"?
A) To ensure that the array is properly initialized
B) To facilitate efficient enqueue and dequeue operations
C) To prevent the array from becoming too large
D) To maintain a record of the number of elements added to the queue