Question: What is the time complexity of enqueueing an element in a queue implemented using an array?
Options:
Correct Answer: O(1)
Solution:
Enqueueing an element in a queue implemented using an array can be done in constant time, O(1), if there is space available.