Question:Suppose we have a circular array implementation of a queue, with ten items in the queue stored at data[2] through data[11]. The CAPACITY is 42. Where does the enqueue member function place the new entry in the array?
A data[1]
B data[2]
C data[11]
D data[12]
+ AnswerD
+ Report