Question: In a circular queue implemented using an array, what is the time complexity of the enqueue operation?
Options:
Correct Answer: O(1)
Solution:
The enqueue operation in a circular queue can be performed in constant time O(1) as long as there is space available.