Design a circular queue with a fixed capacity. The queue must support: enQueue(value) deQueue() Front() Rear() isEmpty() isFull() A circular queue behaves like a normal FIFO queue, but when an index ...