Question: In a circular queue, what happens when the rear pointer reaches the end of the array?
Options:
Correct Answer: It resets to the beginning of the array
Solution:
In a circular queue, when the rear pointer reaches the end of the array, it resets to the beginning of the array to utilize the available space.