Multiple choice When linear queue of size MAXQUEUE were implemented in C, underflow occurs at Front = 0 Rear = -1 Rear = Front Rear - Front + 1 = 0 Reveal answer Fill a bubble to check yourself D Correct answer Explanation In a linear queue implemented with an array, the condition Rear - Front + 1 = 0 (or simply Rear < Front) indicates that the queue is empty, meaning an underflow occurs if a dequeue operation is attempted.