data[1]
, 2.data[2]
, 3.data[11]
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 push member function place the new entry in the array?
Correct Answer: data[12]
Explanation:
Note: This Question is unanswered, help us to find answer for this one
More Data Structures And Algorithms MCQ Questions